Files
best-choice/server/src/db/migrations/index.ts
T
2025-10-13 14:04:22 +03:00

15 lines
595 B
TypeScript

import type { Migration } from './types.js';
import { migration as enablePgvector } from './0001-enable-pgvector.js';
import { migration as createProjectsTable } from './0002-create-projects-table.js';
import { migration as createUrlsTable } from './0003-create-urls-table.js';
import { migration as createItemsTable } from './0004-create-items-table.js';
import { migration as createItemPricesTable } from './0005-create-item-prices-table.js';
export const migrations: Migration[] = [
enablePgvector,
createProjectsTable,
createUrlsTable,
createItemsTable,
createItemPricesTable,
];