Files
codeocean/db/migrate/20140820170039_add_instructions_to_exercises.rb

6 lines
135 B
Ruby

class AddInstructionsToExercises < ActiveRecord::Migration[4.2]
def change
add_column :exercises, :instructions, :text
end
end