Files
nairobi/db/migrate/20240424002959_remove_visit_id_from_debates.rb
Javi Martín 5df7b702ee Remove visit_id from the debates table
This was added in commit 02f19aa4b, before we started tracking events.
I don't think we ever used it; in any case, we now use the `Ahoy::Chart`
class to deal with the stats Ahoy used to generate.
2024-05-09 14:56:25 +02:00

6 lines
132 B
Ruby

class RemoveVisitIdFromDebates < ActiveRecord::Migration[7.0]
def change
remove_column :debates, :visit_id, :string
end
end