mirror of
https://github.com/discourse/discourse.git
synced 2026-09-05 04:40:41 -05:00
10 lines
187 B
Ruby
10 lines
187 B
Ruby
class RemoveUrlFromIncomingReferer < ActiveRecord::Migration
|
|
def up
|
|
remove_column :incoming_referers, :url
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|