mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:37:02 +02:00
added gui header customisation
This commit is contained in:
@ -358,3 +358,12 @@ create table if not exists `ldap` (
|
||||
) Engine=InnoDB;
|
||||
|
||||
|
||||
create table if not exists `customer_settings` (
|
||||
`domain` varchar(255) not null unique,
|
||||
`branding_text` varchar(255) default null,
|
||||
`branding_url` varchar(255) default null,
|
||||
`support_link` varchar(255) default null,
|
||||
`colour` varchar(255) default null
|
||||
) Engine=InnoDB;
|
||||
|
||||
|
||||
|
@ -14,5 +14,12 @@ create table if not exists `ldap` (
|
||||
`ldap_bind_pw` varchar(255) not null
|
||||
) Engine=InnoDB;
|
||||
|
||||
create table if not exists `customer_settings` (
|
||||
`domain` varchar(255) not null unique,
|
||||
`branding_text` varchar(255) default null,
|
||||
`branding_url` varchar(255) default null,
|
||||
`support_link` varchar(255) default null,
|
||||
`colour` varchar(255) default null
|
||||
) Engine=InnoDB;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user