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

refactor(schemas): add alteration script

This commit is contained in:
Gao Sun 2023-02-20 11:33:20 +08:00
parent 76a04d97b3
commit 735796059c
No known key found for this signature in database
GPG key ID: 13EBE123E4773688

View file

@ -0,0 +1,26 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {
await pool.query(sql`
drop index sign_in_experiences__id;
alter table sign_in_experiences
drop constraint sign_in_experiences_pkey,
add primary key (tenant_id, id);
`);
},
down: async (pool) => {
await pool.query(sql`
alter table sign_in_experiences
drop constraint sign_in_experiences_pkey,
add primary key (id);
create index sign_in_experiences__id
on sign_in_experiences (tenant_id, id);
`);
},
};
export default alteration;