Add createdAt to org insert

This commit is contained in:
Owen
2025-07-31 17:53:11 -07:00
parent ea6f803e78
commit 6d359b6bb9

View File

@@ -136,7 +136,8 @@ export async function createOrg(
.values({
orgId,
name,
subnet
subnet,
createdAt: new Date().toISOString()
})
.returning();