migrations

This commit is contained in:
2025-02-06 12:41:54 -05:00
parent 87f408efb5
commit b177e311e4
4 changed files with 74 additions and 2 deletions

4
migrations/1-init_db.sql Normal file
View File

@@ -0,0 +1,4 @@
CREATE TABLE todo(
id INT PRIMARY KEY,
name VARCHAR(50)
);