Rename SiteSetting#use_https to force_https.

This commit is contained in:
Guo Xiang Tan
2016-06-27 17:26:43 +08:00
parent 83b08b87d5
commit 20359788dc
16 changed files with 75 additions and 18 deletions

View File

@ -0,0 +1,5 @@
class UseHttpsNameChangeInSiteSettings < ActiveRecord::Migration
def up
execute "UPDATE site_settings SET name = 'force_https' WHERE name = 'use_https'"
end
end