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-1706510290-protected-app-host-index.ts

21 lines
501 B
TypeScript

import { sql } from 'slonik';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {
await pool.query(sql`
create unique index applications__protected_app_metadata_host
on applications (
(protected_app_metadata->>'host')
);
`);
},
down: async (pool) => {
await pool.query(sql`
drop index applications__protected_app_metadata_host;
`);
},
};
export default alteration;