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/next-1672901841-roles-and-scopes-not-null.ts

24 lines
775 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 roles_scopes alter column role_id set not null;
alter table roles_scopes alter column scope_id set not null;
`);
},
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)
`);
},
};
export default alteration;