/apps/timeline/sql/start.sql

http://zoop.googlecode.com/ · SQL · 12 lines · 10 code · 2 blank · 0 comment · 0 complexity · 97e5309865c8d95141b6102ed3bac6cb MD5 · raw file

  1. begin;
  2. create table entry
  3. (
  4. "id" serial primary key,
  5. "start" timestamp with time zone,
  6. "end" timestamp with time zone,
  7. "is_duration" boolean,
  8. "title" text
  9. );
  10. commit;