Adds initial migration

This commit is contained in:
Dennis Schoepf 2024-04-26 15:16:57 +02:00
parent 23e29c44f4
commit 4d218cf16a

View file

@ -0,0 +1,8 @@
-- +migrate Up
CREATE table users (
id INTEGER PRIMARY KEY,
name text NOT NULL
);
-- +migrate Down
DROP TABLE users;