feat(package): migrator: ! migration up

This commit is contained in:
2025-11-14 15:50:55 +00:00
parent 00bbd42cab
commit 6204ba5abb
11 changed files with 126 additions and 12 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE profile ADD COLUMN info TEXT;

View File

@@ -0,0 +1,6 @@
psql "$DATABASE_URL" 'CREATE TABLE profile (
id INTEGER,
username TEXT
)'
#migrator migrate to 20251104192425-add-info-to-profile

View File

@@ -0,0 +1 @@
migrator list