use embed for migrations
This commit is contained in:
5
internal/migrate/migrations/1-init_db.sql
Normal file
5
internal/migrate/migrations/1-init_db.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE todo(
|
||||
id INTEGER PRIMARY KEY,
|
||||
name VARCHAR(50),
|
||||
done INTEGER
|
||||
);
|
||||
Reference in New Issue
Block a user