added gui header customisation

This commit is contained in:
SJ
2013-07-16 07:36:48 +02:00
parent 01a92a4a16
commit 5e3651ac10
11 changed files with 70 additions and 2 deletions

View File

@ -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;

View File

@ -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;