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`
|
2023-01-18 00:12:57 -05:00
|
|
|
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`
|
2023-01-18 00:12:57 -05:00
|
|
|
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;
|