These migrations and models were added after the Rails 5 branch was created but before it was merged.
7 lines
212 B
Ruby
7 lines
212 B
Ruby
class AddPhysicalToBudgetBallot < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :budget_ballots, :physical, :boolean, default: false
|
|
add_column :budget_ballots, :poll_ballot_id, :integer
|
|
end
|
|
end
|