Remove siteSiteResources

This commit is contained in:
Owen
2026-03-19 21:44:59 -07:00
parent 6f2e37948c
commit 87524fe8ae
6 changed files with 85 additions and 48 deletions

View File

@@ -249,8 +249,8 @@ export const siteResources = pgTable("siteResources", {
export const networks = pgTable("networks", {
networkId: serial("networkId").primaryKey(),
niceId: text("niceId").notNull(),
name: text("name").notNull(),
niceId: text("niceId"),
name: text("name"),
scope: varchar("scope")
.$type<"global" | "resource">()
.notNull()