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

fix(schemas): modify domain table unique index (#3954)

This commit is contained in:
wangsijie 2023-06-14 11:12:08 +09:00 committed by GitHub
parent 4a983f97e9
commit ab8c26226e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,20 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {
await pool.query(sql`
alter table domains drop constraint domains__domain;
alter table domains add constraint domains__domain unique (tenant_id, domain);
`);
},
down: async (pool) => {
await pool.query(sql`
alter table domains drop constraint domains__domain;
alter table domains add constraint domains__domain unique (domain);
`);
},
};
export default alteration;

View file

@ -11,7 +11,7 @@ create table domains (
created_at timestamptz not null default(now()),
primary key (id),
constraint domains__domain
unique (domain)
unique (tenant_id, domain)
);
create index domains__id on domains (tenant_id, id);