mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-07-08 21:47:40 +00:00
15 lines
595 B
TypeScript
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,
|
|
];
|