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/1.0.0_rc.0-1673465463-ac-scope-name.ts
2023-02-02 22:21:34 +08:00

22 lines
559 B
TypeScript

import { sql } from 'slonik';
import type { AlterationScript } from '../lib/types/alteration.js';
const newScopeName = 'management-api:default';
const oldScopeName = 'default';
const recordId = 'management-api-scope';
const alteration: AlterationScript = {
up: async (pool) => {
await pool.query(sql`
update scopes set name = ${newScopeName} where id = ${recordId}
`);
},
down: async (pool) => {
await pool.query(sql`
update scopes set name = ${oldScopeName} where id = ${recordId}
`);
},
};
export default alteration;