- Fix duplicate db import in PostgreSQL migration scripts

- Fix FormLabel syntax in user creation page
- Add missing SidebarNavItem type properties (autoExpand, children)
- Update SidebarNav component to handle nested navigation
- Successfully build both SQLite and PostgreSQL images
This commit is contained in:
Adrian Astles 2025-07-18 23:29:10 +08:00
parent a140f27d04
commit c3a1e082f1
9 changed files with 139 additions and 283 deletions

View file

@ -16,7 +16,7 @@ export const domains = sqliteTable("domains", {
export const orgs = sqliteTable("orgs", {
orgId: text("orgId").primaryKey(),
name: text("name").notNull(),
passwordResetTokenExpiryHours: integer("passwordResetTokenExpiryHours").notNull().default(1)
passwordResetTokenExpiryHours: integer("passwordResetTokenExpiryHours").notNull().default(1),
subnet: text("subnet")
});