-
-
Save Luke-23ae/9f809113cc11eb56a765 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO builder_template_setting (`type`, `template_id`, `name`, `value`, `category_id`, `options`) | |
VALUES | |
('0', 20, 'builder_cfg_page_title', 'Seitentitel 1', '', ''), | |
('0', 20, 'builder_css_title_color', '#a9cc64', '', ''), | |
('0', 20, 'builder_css_title_font', '\'Times New Roman\', Times, serif', '', ''), | |
('0', 20, 'builder_css_title_size', '64.81927710843374', '', ''), | |
('0', 20, 'builder_css_title_vert_pos_three', '112', '', ''), | |
('0', 20, 'builder_css_title_hor_pos_three', '218', '', '') | |
ON DUPLICATE KEY UPDATE | |
value=VALUES(value), | |
type=IF(VALUES(type)='',type,VALUES(type)), | |
category_id=IF(VALUES(category_id)='',category_id,VALUES(category_id)), | |
options=IF(VALUES(options)='',options,VALUES(options)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment