From ed7a8f3bb3cb0e1b359f7e601e8fb607cf144c84 Mon Sep 17 00:00:00 2001 From: Flaviu Mates Date: Fri, 26 Feb 2021 18:49:51 +0200 Subject: [PATCH] TT#108162 Add csc_color_primary and csc_color_secondary columns to reseller branding table schema Change-Id: I3566529ba7a1805a2aabb26e473da6ac12f70143 --- lib/NGCP/Schema/Result/reseller_brandings.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/NGCP/Schema/Result/reseller_brandings.pm b/lib/NGCP/Schema/Result/reseller_brandings.pm index 8c5a9277..2d497066 100644 --- a/lib/NGCP/Schema/Result/reseller_brandings.pm +++ b/lib/NGCP/Schema/Result/reseller_brandings.pm @@ -28,6 +28,10 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 32 }, "css", { data_type => "mediumtext", is_nullable => 1 }, + "csc_color_primary", + { data_type => "varchar", is_nullable => 1, size => 45 }, + "csc_color_secondary", + { data_type => "varchar", is_nullable => 1, size => 45 }, );