fix: use proper JSON literal syntax in migration 009
CI/CD Pipeline / Validate Code Quality And Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Lint (push) Has been cancelled
Deploy / Deploy Staging (push) Has been cancelled
Deploy / Build Production Runtime Images (push) Has been cancelled
Deploy / Deploy Production (push) Has been cancelled
Deploy / Production Browser E2E (push) Has been cancelled

This commit is contained in:
CI Test
2026-06-28 17:05:21 +08:00
parent 1e9c275471
commit ec787703dd
@@ -85,7 +85,7 @@ def upgrade() -> None:
# Set shared_users to empty array for all projects
conn.execute(text("""
UPDATE projects SET shared_users = []::json
UPDATE projects SET shared_users = '[]'::json
WHERE shared_users IS NULL
"""))