mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
10 lines
192 B
Ruby
10 lines
192 B
Ruby
class RemoveUrlFromIncomingReferer < ActiveRecord::Migration[4.2]
|
|
def up
|
|
remove_column :incoming_referers, :url
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|