ok, we are nearly done

This commit is contained in:
2024-12-14 00:43:45 -05:00
parent 94e5886d70
commit 62f95b16cd
10 changed files with 187 additions and 174 deletions

View File

@@ -1,5 +1,5 @@
import { pgTable, integer, varchar, text, decimal, real } from "drizzle-orm/pg-core";
import { pgTable, integer, varchar, text, decimal, uuid, real } from "drizzle-orm/pg-core";
import { sql } from "drizzle-orm";
import { timestamps } from "./helpers/columns.helpers";
@@ -33,4 +33,6 @@ export const psa = pgTable("psa", {
productContentWidget: varchar("PRODUCT_CONTENT_WIDGET", { length: 256 }),
googleCategorization: varchar("GOOGLE_CATEGORIZATION", { length: 50 }),
itemBasedCommission: varchar("ITEM_BASED_COMMISSION", { length: 50 }),
});
uuid: uuid().defaultRandom(),
});
export default psa;