console/packages/migrations/src/actions/2023.09.28T14.14.14.native-fed-v2.ts
Copilot aac23596ec
refactor: shared internal postgres package around slonik (#7887)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: n1ru4l <14338007+n1ru4l@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
2026-03-27 10:20:05 +01:00

7 lines
261 B
TypeScript

import { type MigrationExecutor } from '../pg-migrator';
export default {
name: '2023.09.28T14.14.14.native-fed-v2.ts',
run: ({ psql }) =>
psql`ALTER TABLE "projects" ADD COLUMN native_federation BOOLEAN DEFAULT FALSE;`,
} satisfies MigrationExecutor;