mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
9 lines
187 B
Ruby
9 lines
187 B
Ruby
class RemoveUrlFromIncomingReferer < ActiveRecord::Migration
|
|
def up
|
|
remove_column :incoming_referers, :url
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|