feat(package): migrator: mvp

This commit is contained in:
2025-12-16 17:28:36 +00:00
parent 13fdfac2ef
commit bb2ae34758
55 changed files with 890 additions and 46 deletions

View File

@@ -0,0 +1,3 @@
-- Remove column from existing table
ALTER TABLE users DROP COLUMN bio;

View File

@@ -0,0 +1,3 @@
-- Add column to existing table
ALTER TABLE users ADD COLUMN bio TEXT;