6 lines
159 B
Ruby
6 lines
159 B
Ruby
class AddOfficerAssignmentToVotes < ActiveRecord::Migration
|
|
def change
|
|
add_column :poll_voters, :officer_assignment_id, :integer, default: nil
|
|
end
|
|
end
|