Add boolean flag to allow file creation

This commit is contained in:
Maximilian Grundke
2016-05-10 17:05:43 +02:00
parent 9fc974af20
commit 6c820b75c7
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,5 @@
class AddAllowFileCreationToExercises < ActiveRecord::Migration
def change
add_column :exercises, :allow_file_creation, :boolean
end
end