0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00
logto/packages/schemas/alterations/next-1701054133-add-unique-constraint-to-the-sso-connector-name.ts
simeng-li c47e0192ff
feat(schemas): add unique constrain to the SSO connectorName field (#4974)
add unique constrain to the SSO connectorName field
2023-11-28 13:55:47 +08:00

21 lines
537 B
TypeScript

import { sql } from 'slonik';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {
await pool.query(sql`
alter table sso_connectors
add constraint sso_connectors__connector_name__unique
unique (tenant_id, connector_name);
`);
},
down: async (pool) => {
await pool.query(sql`
alter table sso_connectors
drop constraint sso_connectors__connector_name__unique;
`);
},
};
export default alteration;