/apps/timeline/sql/start.sql
http://zoop.googlecode.com/ · SQL · 12 lines · 10 code · 2 blank · 0 comment · 0 complexity · 97e5309865c8d95141b6102ed3bac6cb MD5 · raw file
- begin;
- create table entry
- (
- "id" serial primary key,
- "start" timestamp with time zone,
- "end" timestamp with time zone,
- "is_duration" boolean,
- "title" text
- );
- commit;