use sqlx migrations

This commit is contained in:
2025-06-26 12:58:44 -04:00
parent 4509359c0e
commit c054ef1c1c
8 changed files with 44 additions and 63 deletions

View File

@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS dailies (
userid BIGINT NOT NULL PRIMARY KEY,
last TIMESTAMPTZ,
streak INT
)