0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-30 20:33:54 -05:00
logto/packages/schemas/alterations/next-1702877515-protected-app-configs.ts
wangsijie e28822997f
feat(schemas): add column protected_app_metadata (#5113)
* feat(schemas): add new application type for protected app

* feat(schemas): add column protected_app_configs
2023-12-19 17:04:14 +08:00

18 lines
423 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 applications add protected_app_metadata jsonb;
`);
},
down: async (pool) => {
await pool.query(sql`
alter table applications drop protected_app_metadata;
`);
},
};
export default alteration;