6 lines
160 B
Ruby
6 lines
160 B
Ruby
|
class AddHighestStepToConferenceRegistrations < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :conference_registrations, :highest_step, :string
|
||
|
end
|
||
|
end
|