0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/schemas/alterations/1.0.0_rc.0-1672901841-roles-and-scopes-not-null.ts

25 lines
787 B
TypeScript
Raw Normal View History

2024-03-16 06:04:55 -05:00
import { sql } from '@silverhand/slonik';
2023-01-06 02:37:00 -05:00
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {
await pool.query(sql`
alter table roles_scopes alter column role_id set not null;
alter table roles_scopes alter column scope_id set not null;
2023-01-06 02:37:00 -05:00
`);
},
down: async (pool) => {
await pool.query(sql`
alter table roles_scopes
drop constraint if exists roles_permissison_pkey,
drop constraint if exists roles_scopes_pkey;
alter table roles_scopes alter column role_id drop not null;
alter table roles_scopes alter column scope_id drop not null;
alter table roles_scopes add primary key (role_id, scope_id)
2023-01-06 02:37:00 -05:00
`);
},
};
export default alteration;