Query metadata, migrations and formatting

This commit is contained in:
Alphonse Paix
2025-08-24 12:45:32 +02:00
parent 394799f4e0
commit 310a202ca3
4 changed files with 12 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
BEGIN;
UPDATE subscriptions SET status = 'confirmed' WHERE status IS NULL;
ALTER TABLE subscriptions ALTER COLUMN status SET NOT NULL;
COMMIT;