7 lines
170 B
Ruby
7 lines
170 B
Ruby
|
|
class ChangeVotingMechanism < ActiveRecord::Migration[8.0]
|
||
|
|
def change
|
||
|
|
remove_column :price_reports, :upvotes
|
||
|
|
remove_column :price_reports, :downvotes
|
||
|
|
end
|
||
|
|
end
|