6 lines
135 B
Ruby
6 lines
135 B
Ruby
|
|
class AddVolunteerToRegistrations < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :registrations, :volunteer, :boolean
|
||
|
|
end
|
||
|
|
end
|