diff options
Diffstat (limited to 'db/schema.sql')
-rw-r--r-- | db/schema.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql index cf2914467..0e38ad862 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -449,6 +449,7 @@ create table admin_log ( or object_type = 'body' or object_type = 'category' or object_type = 'role' + or object_type = 'manifesttheme' ), object_id integer not null, action text not null, @@ -562,3 +563,13 @@ CREATE TABLE state ( type text not null check (type = 'open' OR type = 'closed' OR type = 'fixed'), name text not null unique ); + +CREATE TABLE manifest_theme ( + id serial not null primary key, + cobrand text not null unique, + name text not null, + short_name text not null, + background_colour text, + theme_colour text, + images text ARRAY +); |