♻️rename title & subtitle to orgTitle and orgSubtitle

This commit is contained in:
Fred KISSIE
2025-11-15 01:41:56 +01:00
parent 27e8250cd1
commit e2c4a906c4
3 changed files with 12 additions and 12 deletions

View File

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