mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
ce3a62bc7a
* feat(core,schemas): add post custom ui assets api
20 lines
602 B
TypeScript
20 lines
602 B
TypeScript
import { sql } from '@silverhand/slonik';
|
|
|
|
import type { AlterationScript } from '../lib/types/alteration.js';
|
|
|
|
const alteration: AlterationScript = {
|
|
up: async (pool) => {
|
|
await pool.query(sql`
|
|
alter table sign_in_experiences drop column custom_ui_asset_id;
|
|
alter table sign_in_experiences add column custom_ui_assets jsonb;
|
|
`);
|
|
},
|
|
down: async (pool) => {
|
|
await pool.query(sql`
|
|
alter table sign_in_experiences add column custom_ui_asset_id varchar(21);
|
|
alter table sign_in_experiences drop column custom_ui_assets;
|
|
`);
|
|
},
|
|
};
|
|
|
|
export default alteration;
|