0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/schemas/alterations/next-1667374974-user-suspend.ts
wangsijie 73bb938c3c
feat(schemas): add user is suspended column (#2305)
Co-authored-by: Gao Sun <gao@silverhand.io>
2022-11-04 10:10:01 +08:00

18 lines
425 B
TypeScript

import { sql } from 'slonik';
import type { AlterationScript } from '../lib/types/alteration';
const alteration: AlterationScript = {
up: async (pool) => {
await pool.query(sql`
alter table users add column is_suspended boolean not null default false;
`);
},
down: async (pool) => {
await pool.query(sql`
alter table users drop column is_suspended;
`);
},
};
export default alteration;