Files
nairobi/db/migrate/20160610094658_desnormalize_ballot_line.rb
2016-06-11 14:57:07 +02:00

8 lines
291 B
Ruby

class DesnormalizeBallotLine < ActiveRecord::Migration
def change
add_column :budget_ballot_lines, :budget_id, :integer, index: true
add_column :budget_ballot_lines, :group_id, :integer, index: true
add_column :budget_ballot_lines, :heading_id, :integer, index: true
end
end