Query metadata, migrations and formatting

This commit is contained in:
Alphonse Paix
2025-08-24 12:45:32 +02:00
parent 954772e9db
commit 73ff7c04fe
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;