diff options
Diffstat (limited to 'server/migrations/1_init_up.sql')
| -rw-r--r-- | server/migrations/1_init_up.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/migrations/1_init_up.sql b/server/migrations/1_init_up.sql new file mode 100644 index 0000000..7edb398 --- /dev/null +++ b/server/migrations/1_init_up.sql | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | BEGIN; | ||
| 2 | |||
| 3 | CREATE TABLE migration (version); | ||
| 4 | |||
| 5 | INSERT INTO migration VALUES (1); | ||
| 6 | |||
| 7 | COMMIT; | ||