0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/schemas/alterations/1.17.0-1717148078-remove-service-log-reference.ts
2024-05-31 23:48:43 +08:00

19 lines
553 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 service_logs drop constraint service_logs_tenant_id_fkey;
`);
},
down: async (pool) => {
await pool.query(sql`
alter table service_logs add constraint service_logs_tenant_id_fkey
foreign key (tenant_id) references tenants(id) on update cascade on delete cascade;
`);
},
};
export default alteration;