🗃️ Add primaryColor to login page branding

This commit is contained in:
Fred KISSIE
2025-11-15 01:06:09 +01:00
parent 955f927c59
commit b505cc60b0
2 changed files with 4 additions and 2 deletions

View File

@@ -209,8 +209,9 @@ export const loginPageBranding = pgTable("loginPageBranding", {
logoUrl: text("logoUrl").notNull(),
logoWidth: integer("logoWidth").notNull(),
logoHeight: integer("logoHeight").notNull(),
title: text("title").notNull(),
title: text("title"),
subtitle: text("subtitle"),
primaryColor: text("primaryColor"),
resourceTitle: text("resourceTitle").notNull(),
resourceSubtitle: text("resourceSubtitle")
});

View File

@@ -210,8 +210,9 @@ export const loginPageBranding = sqliteTable("loginPageBranding", {
logoUrl: text("logoUrl").notNull(),
logoWidth: integer("logoWidth").notNull(),
logoHeight: integer("logoHeight").notNull(),
title: text("title").notNull(),
title: text("title"),
subtitle: text("subtitle"),
primaryColor: text("primaryColor"),
resourceTitle: text("resourceTitle").notNull(),
resourceSubtitle: text("resourceSubtitle")
});