Initial commit

This commit is contained in:
Šesták Vít
2016-01-10 17:31:07 +01:00
commit 4b87ced31f
104 changed files with 4870 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# --- !Ups
CREATE TABLE snooze(
"id" SERIAL NOT NULL,
"until" DATE NOT NULL,
"snoozed_object_identifier" VARCHAR(512) NOT NULL,
"reason" VARCHAR(1024) NOT NULL
);
CREATE INDEX snooze_until ON snooze (until);
# --- !Downs
DROP TABLE snooze;