Skip to content

Commit

Permalink
SW-26916 - Fix config snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
mitelg committed Nov 2, 2022
1 parent 7341225 commit a7de7fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _sql/migrations/1720-add-preview-for-youtube-videos.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public function up($modus)
$sql = <<<'EOD'
INSERT IGNORE INTO `s_library_component_field` (`id`, `componentID`, `name`, `x_type`, `value_type`, `field_label`, `support_text`, `help_title`, `help_text`, `store`, `display_field`, `value_field`, `default_value`, `allow_blank`, `translatable`, `position`)
VALUES
(null, @componentId, 'load_video_on_confirmation', 'checkbox', '', 'Video erst nach Bestätigung durch den User laden', '', '', '', '', '', '', 0, 0, 0, @maxNumberPosition),
(null, @componentId, 'preview_image', 'mediaselectionfield', '', 'Vorschau-Bild', '', '', '', '', '', '', 0, 0, 0, @maxNumberPosition+1)
(null, @componentId, 'load_video_on_confirmation', 'checkbox', '', 'Video erst nach Bestätigung durch den Kunden laden', '', '', '', '', '', '', 0, 0, 0, @maxNumberPosition),
(null, @componentId, 'preview_image', 'mediaselectionfield', '', 'Vorschaubild', '', '', '', '', '', '', 0, 0, 0, @maxNumberPosition+1)
;
EOD;
$this->addSql($sql);
Expand Down

0 comments on commit a7de7fc

Please sign in to comment.