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:
parent
4a983f97e9
commit
ab8c26226e
2 changed files with 21 additions and 1 deletions
|
@ -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;
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue