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.
6 lines
132 B
Ruby
6 lines
132 B
Ruby
class RemoveVisitIdFromDebates < ActiveRecord::Migration[7.0]
|
|
def change
|
|
remove_column :debates, :visit_id, :string
|
|
end
|
|
end
|