fix: 🐛 remove generic type

This commit is contained in:
amianthus
2026-02-02 13:38:14 +00:00
parent 58ef81c5e0
commit 56734a34d9

View File

@@ -1,9 +1,8 @@
import type { AppEnv } from "@models/genModels/genEnums";
import { organizations } from "@models/orgModels/orgTable.js";
import type { Table } from "drizzle-orm";
import { foreignKey, pgTable, primaryKey, text } from "drizzle-orm/pg-core";
export const revenuecatMappings: Table = pgTable(
export const revenuecatMappings = pgTable(
"revenuecat_mappings",
{
org_id: text("org_id").notNull(),