This commit is contained in:
2019-10-06 20:58:13 +02:00
parent b4f707da19
commit 857562c0eb
17 changed files with 478 additions and 34 deletions

View File

@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS migrations (
id integer GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
name text UNIQUE NOT NULL,
applied_at timestamptz NOT NULL DEFAULT CURRENT_TIMESTAMP
)