osem-fcy/db/migrate/20130821094246_add_volunteer_to_registrations.rb

7 lines
171 B
Ruby

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