/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

  1. begin;
  2. create table person
  3. (
  4. id serial primary key,
  5. username text,
  6. password text
  7. );
  8. commit;