mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-07-08 21:47:40 +00:00
1st approach for projects, items, db structure
This commit is contained in:
@@ -1,4 +1,14 @@
|
||||
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];
|
||||
export const migrations: Migration[] = [
|
||||
enablePgvector,
|
||||
createProjectsTable,
|
||||
createUrlsTable,
|
||||
createItemsTable,
|
||||
createItemPricesTable,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user