2023-04-04 03:23:25 -05:00
|
|
|
import { generateStandardId } from '@logto/shared/universal';
|
2024-03-16 06:04:55 -05:00
|
|
|
import { sql } from '@silverhand/slonik';
|
2023-02-22 09:35:17 -05:00
|
|
|
|
|
|
|
import type { AlterationScript } from '../lib/types/alteration.js';
|
|
|
|
|
|
|
|
const alteration: AlterationScript = {
|
|
|
|
up: async (pool) => {
|
|
|
|
await pool.query(sql`
|
|
|
|
insert into applications (
|
|
|
|
tenant_id,
|
|
|
|
id,
|
|
|
|
name,
|
|
|
|
secret,
|
|
|
|
description,
|
|
|
|
type,
|
|
|
|
oidc_client_metadata
|
|
|
|
) values (
|
|
|
|
'admin',
|
|
|
|
'admin-console',
|
|
|
|
'Admin Console',
|
|
|
|
${generateStandardId()},
|
|
|
|
'Logto Admin Console.',
|
|
|
|
'SPA',
|
|
|
|
'{ "redirectUris": [], "postLogoutRedirectUris": [] }'::jsonb
|
|
|
|
);
|
|
|
|
`);
|
|
|
|
},
|
|
|
|
down: async (pool) => {
|
|
|
|
await pool.query(sql`
|
|
|
|
delete from applications
|
|
|
|
where tenant_id = 'admin'
|
|
|
|
and id = 'admin-console';
|
|
|
|
`);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default alteration;
|