From 42e16a425453f51b522b19279e53559cd2fbad5a Mon Sep 17 00:00:00 2001 From: Flaviu Mates Date: Fri, 26 Feb 2021 18:49:02 +0200 Subject: [PATCH] TT#108162 Add csc_color_primary and csc_color_secondary fields to reseller branding table Change-Id: I06b305ba848c4f97d452dbede0141e40605d98d7 --- db_scripts/diff/15666.down | 8 ++++++++ db_scripts/diff/15666.up | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 db_scripts/diff/15666.down create mode 100644 db_scripts/diff/15666.up diff --git a/db_scripts/diff/15666.down b/db_scripts/diff/15666.down new file mode 100644 index 00000000..b86e1d94 --- /dev/null +++ b/db_scripts/diff/15666.down @@ -0,0 +1,8 @@ +USE billing; +SET autocommit = 0; + +ALTER TABLE billing.reseller_brandings +DROP COLUMN csc_color_primary, +DROP COLUMN csc_color_secondary; + +COMMIT; diff --git a/db_scripts/diff/15666.up b/db_scripts/diff/15666.up new file mode 100644 index 00000000..937dbe67 --- /dev/null +++ b/db_scripts/diff/15666.up @@ -0,0 +1,8 @@ +USE billing; +SET autocommit = 0; + +ALTER TABLE billing.reseller_brandings +ADD COLUMN csc_color_primary VARCHAR(45) NULL DEFAULT NULL, +ADD COLUMN csc_color_secondary VARCHAR(45) NULL DEFAULT NULL; + +COMMIT;