mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
23 lines
559 B
TypeScript
23 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;
|