6 lines
142 B
Ruby
6 lines
142 B
Ruby
|
class AddOpenStudentToCourse < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :courses, :open_student, :integer, :default => 0
|
||
|
end
|
||
|
end
|