feat: auto-detecting base variant with LLM

This commit is contained in:
John Yeo
2025-06-26 12:33:17 +01:00
parent 29ab4b23a2
commit ecb1f5fbbf
56 changed files with 1018 additions and 489 deletions

View File

@@ -1,4 +1,4 @@
import { foreignKey, jsonb, text } from "drizzle-orm/pg-core";
import { foreignKey, index, jsonb, text } from "drizzle-orm/pg-core";
import { numeric, pgTable } from "drizzle-orm/pg-core";
import { customers } from "../../cusModels/cusTable.js";
@@ -31,5 +31,6 @@ export const customerPrices = pgTable(
foreignColumns: [prices.id],
name: "customer_prices_price_id_fkey",
}),
index("idx_customer_prices_product_id").on(table.customer_product_id),
],
);