Skip to content

Commit d880b92

Browse files
authored
fix: do not drop jwks column just yet (#667)
1 parent fa33510 commit d880b92

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

migrations/multitenant/0016-tenants-jwks.sql

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ CREATE TABLE IF NOT EXISTS tenants_jwks (
66
active boolean NOT NULL,
77
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
88
);
9-
ALTER TABLE tenants DROP COLUMN IF EXISTS jwks;
109

1110
CREATE INDEX IF NOT EXISTS tenants_jwks_tenant_id_idx ON tenants_jwks(tenant_id);
1211
CREATE INDEX IF NOT EXISTS tenants_jwks_active_idx ON tenants_jwks(tenant_id, active);

0 commit comments

Comments
 (0)