6 lines
145 B
Ruby
6 lines
145 B
Ruby
class AddAllowFileCreationToExercises < ActiveRecord::Migration
|
|
def change
|
|
add_column :exercises, :allow_file_creation, :boolean
|
|
end
|
|
end
|