2024-03-16 06:04:55 -05:00
|
|
|
import { sql } from '@silverhand/slonik';
|
2023-02-12 05:43:02 -05:00
|
|
|
|
|
|
|
import type { AlterationScript } from '../lib/types/alteration.js';
|
|
|
|
|
|
|
|
const alteration: AlterationScript = {
|
|
|
|
up: async (pool) => {
|
|
|
|
await pool.query(sql`
|
|
|
|
drop index logs__user_id;
|
|
|
|
drop index logs__application_id;
|
|
|
|
|
|
|
|
create index logs__user_id
|
|
|
|
on logs (tenant_id, (payload->>'userId'));
|
|
|
|
|
|
|
|
create index logs__application_id
|
|
|
|
on logs (tenant_id, (payload->>'applicationId'));
|
|
|
|
`);
|
|
|
|
},
|
|
|
|
down: async (pool) => {
|
|
|
|
await pool.query(sql`
|
|
|
|
drop index logs__user_id;
|
|
|
|
drop index logs__application_id;
|
|
|
|
|
|
|
|
create index logs__user_id
|
|
|
|
on logs (tenant_id, (payload->>'user_id') nulls last);
|
|
|
|
|
|
|
|
create index logs__application_id
|
|
|
|
on logs (tenant_id, (payload->>'application_id') nulls last);
|
|
|
|
`);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default alteration;
|