6 lines
135 B
Ruby
6 lines
135 B
Ruby
class AddUnpublishedToExercise < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :exercises, :unpublished, :boolean
|
|
end
|
|
end
|