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,6 @@
CREATE TABLE IF NOT EXISTS games (
id BIGSERIAL PRIMARY KEY,
name CHAR[255]
)