mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
73bb938c3c
Co-authored-by: Gao Sun <gao@silverhand.io>
18 lines
425 B
TypeScript
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;
|