mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
488 B
Ruby
10 lines
488 B
Ruby
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
|