mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-28 21:58:15 +02:00
- 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:
parent
a140f27d04
commit
c3a1e082f1
9 changed files with 139 additions and 283 deletions
|
@ -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")
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue