2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class FixMigratedHosts < ActiveRecord::Migration[4.2]
|
2015-08-22 10:20:20 -04:00
|
|
|
def up
|
|
|
|
|
execute "UPDATE embeddable_hosts SET host = regexp_replace(host, '^https?:\/\/', '', 'i')"
|
|
|
|
|
end
|
|
|
|
|
end
|