Files
grecia/db/migrate/20170908175149_add_officer_data_to_poll_shifts.rb
2017-09-08 20:08:45 +02:00

7 lines
187 B
Ruby

class AddOfficerDataToPollShifts < ActiveRecord::Migration
def change
add_column :poll_shifts, :officer_name, :string
add_column :poll_shifts, :officer_email, :string
end
end