mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-04-30 04:14:29 +02:00
Initial commit
This commit is contained in:
13
conf/evolutions/default/4.sql
Normal file
13
conf/evolutions/default/4.sql
Normal 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;
|
||||
Reference in New Issue
Block a user