Files
nairobi/db/migrate/20160614091639_remove_heading_id_from_ballot.rb
Juanjo Bazán 1b57e14a86 removes heading reference in ballot
heading info is stored per group in ballot_lines
2016-06-14 14:04:27 +02:00

6 lines
138 B
Ruby

class RemoveHeadingIdFromBallot < ActiveRecord::Migration
def change
remove_column :budget_ballots, :heading_id, :integer
end
end