This commit is contained in:
John Yeo
2026-01-23 17:13:19 +00:00
parent 3f4247e453
commit cb05d169a2
454 changed files with 9436 additions and 9160 deletions

View File

@@ -1,8 +1,13 @@
import { pgTable, text, foreignKey, boolean } from "drizzle-orm/pg-core";
import { numeric } from "drizzle-orm/pg-core";
import type { InferInsertModel, InferSelectModel } from "drizzle-orm";
import {
boolean,
foreignKey,
numeric,
pgTable,
text,
} from "drizzle-orm/pg-core";
import { organizations } from "../../orgModels/orgTable.js";
import { rewards } from "../rewardModels/rewardTable.js";
import { InferSelectModel, InferInsertModel } from "drizzle-orm";
export const rewardPrograms = pgTable(
"reward_programs",