mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:29:54 +08:00
12 lines
263 B
Ruby
12 lines
263 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FixMigratedHosts < ActiveRecord::Migration[4.2]
|
|
def up
|
|
execute "UPDATE embeddable_hosts SET host = regexp_replace(host, '^https?:\/\/', '', 'i')"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|