mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 16:17:34 +08:00
11 lines
263 B
Ruby
Vendored
11 lines
263 B
Ruby
Vendored
# 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
|