0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-05 16:17:34 +08:00
discourse/db/migrate/20150822141540_fix_migrated_hosts.rb

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