mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:54:23 +08:00
6 lines
193 B
Ruby
6 lines
193 B
Ruby
class MigrateEmbeddableHost < ActiveRecord::Migration[4.2]
|
|
def change
|
|
execute "UPDATE site_settings SET name = 'embeddable_hosts', data_type = 9 WHERE name = 'embeddable_host'"
|
|
end
|
|
end
|