osem-fcy/db/migrate/20130821094246_add_volunteer_to_registrations.rb
2018-04-04 10:28:10 -07:00

7 lines
166 B
Ruby

# frozen_string_literal: true
class AddVolunteerToRegistrations < ActiveRecord::Migration
def change
add_column :registrations, :volunteer, :boolean
end
end