2024-03-16 06:04:55 -05:00
|
|
|
import { sql } from '@silverhand/slonik';
|
2022-11-17 23:06:53 -05:00
|
|
|
|
2022-12-20 00:33:53 -05:00
|
|
|
import type { AlterationScript } from '../lib/types/alteration.js';
|
2022-11-17 23:06:53 -05:00
|
|
|
|
|
|
|
const alteration: AlterationScript = {
|
|
|
|
up: async (pool) => {
|
|
|
|
await pool.query(sql`
|
|
|
|
ALTER TABLE connectors ADD COLUMN sync_profile boolean NOT NULL DEFAULT false;
|
|
|
|
ALTER TABLE connectors ADD COLUMN connector_id varchar(128);
|
|
|
|
UPDATE connectors SET connector_id = id;
|
|
|
|
ALTER TABLE connectors ALTER COLUMN connector_id SET NOT NULL;
|
|
|
|
ALTER TABLE connectors ADD COLUMN metadata jsonb NOT NULL DEFAULT '{}'::jsonb;
|
|
|
|
`);
|
|
|
|
},
|
|
|
|
down: async (pool) => {
|
|
|
|
await pool.query(sql`
|
|
|
|
DELETE FROM connectors WHERE id <> connector_id;
|
|
|
|
ALTER TABLE connectors DROP COLUMN metadata;
|
|
|
|
ALTER TABLE connectors DROP COLUMN connector_id;
|
|
|
|
ALTER TABLE connectors DROP COLUMN sync_profile;
|
|
|
|
`);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default alteration;
|