0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

refactor: remove service log fkey (#5959)

This commit is contained in:
Gao Sun 2024-05-31 18:09:43 +08:00 committed by GitHub
parent a0b19513bb
commit e989f08065
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,19 @@
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;

View file

@ -1,7 +1,6 @@
create table service_logs (
id varchar(21) not null,
tenant_id varchar(21) not null
references tenants (id) on update cascade on delete cascade,
tenant_id varchar(21) not null,
type varchar(64) not null,
payload jsonb /* @use JsonObject */ not null default '{}'::jsonb,
created_at timestamptz not null default(now()),