add unpublished field to exercise

This commit is contained in:
Karol
2019-10-08 18:32:02 +02:00
parent 64f6f088f5
commit 7b2f61e602
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddUnpublishedToExercise < ActiveRecord::Migration[5.2]
def change
add_column :exercises, :unpublished, :boolean
end
end