These migrations and models were added after the Rails 5 branch was created but before it was merged.
6 lines
156 B
Ruby
6 lines
156 B
Ruby
class AddBallotedHeadingIdToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :users, :balloted_heading_id, :integer, default: nil
|
|
end
|
|
end
|