1st approach for projects, items, db structure

This commit is contained in:
Jurgis Sakalauskas
2025-10-13 14:04:22 +03:00
parent ad2cf25bfd
commit afc3da3e65
45 changed files with 4743 additions and 117 deletions
+11 -1
View File
@@ -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,
];