Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: remove service log fkey #5959

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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;
3 changes: 1 addition & 2 deletions packages/schemas/tables/service_logs.sql
Original file line number Diff line number Diff line change
@@ -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()),
Expand Down
Loading