/apps/rickgigger.com/sql/002_person.sql
http://zoop.googlecode.com/ · SQL · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · 9fa31ae4db23cc5782fc5eddbab8f2c2 MD5 · raw file
- begin;
- create table person
- (
- id serial primary key,
- username text,
- password text
- );
- commit;