From 56b3e8878613fe9c06b32138fa9b526d6be8a6df Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 18 Jan 2016 12:46:54 -0500 Subject: [PATCH] FIX: Rebake all HTML due to handlebars upgrade --- .../20160118174335_rebake_html_customizations.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 db/migrate/20160118174335_rebake_html_customizations.rb diff --git a/db/migrate/20160118174335_rebake_html_customizations.rb b/db/migrate/20160118174335_rebake_html_customizations.rb new file mode 100644 index 0000000000..112e47c303 --- /dev/null +++ b/db/migrate/20160118174335_rebake_html_customizations.rb @@ -0,0 +1,10 @@ +class RebakeHtmlCustomizations < ActiveRecord::Migration + def change + execute "UPDATE site_customizations SET body_tag_baked = NULL, + head_tag_baked = NULL, + header_baked = NULL, + mobile_header_baked = NULL, + footer_baked = NULL, + mobile_footer_baked = NULL" + end +end