summaryrefslogtreecommitdiffstats
path: root/server/migrations/1_init_up.sql
blob: 7edb39836483e34ca5830dd7100d2639dc204b15 (about) (plain) (blame)
1
2
3
4
5
6
7
BEGIN;

CREATE TABLE migration (version);

INSERT INTO migration VALUES (1);

COMMIT;