discourse/db/migrate/20140804030041_remove_url_f...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
223 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RemoveUrlFromIncomingReferer < ActiveRecord::Migration[4.2]
def up
remove_column :incoming_referers, :url
end
def down
raise ActiveRecord::IrreversibleMigration
end
end