ignore user_notification_default partition table in schema generation

This commit is contained in:
x032205
2025-10-09 00:41:25 -04:00
parent 0e97a3c1ba
commit c608303d25

View File

@@ -85,10 +85,9 @@ const getZodDefaultValue = (type: unknown, value: string | number | boolean | Ob
};
const bigIntegerColumns: Record<string, string[]> = {
"folder_commits": ["commitId"]
folder_commits: ["commitId"]
};
const main = async () => {
const tables = (
await db("information_schema.tables")
@@ -99,6 +98,7 @@ const main = async () => {
(el) =>
!el.tableName.includes("_migrations") &&
!el.tableName.includes("audit_logs_") &&
!el.tableName.includes("user_notifications_") &&
!el.tableName.includes("active_locks") &&
el.tableName !== "intermediate_audit_logs"
);