From 1f290a833643ba2bb864f9c661032d9c5bc75feb 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 00000000000..112e47c3031 --- /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