P5-4259 add support for framed-print category texts
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
-- P5-4259 add support for framed-print category texts
|
||||
|
||||
INSERT INTO categorydatakeys (name) VALUES
|
||||
('framed_print_pagetitle'),
|
||||
('framed_print_metadesc');
|
||||
|
||||
|
||||
ALTER TABLE category_texts
|
||||
ADD COLUMN framed_print_name VARCHAR(250),
|
||||
ADD COLUMN framed_print_h1 VARCHAR(250),
|
||||
ADD COLUMN framed_print_description TEXT;
|
||||
|
||||
|
||||
-- populate with values from canvas
|
||||
UPDATE category_texts SET
|
||||
framed_print_name = canvas_name,
|
||||
framed_print_h1 = canvas_h1,
|
||||
framed_print_description = '';
|
||||
Reference in New Issue
Block a user