Files
codeocean/db/migrate/20140820170039_add_instructions_to_exercises.rb

6 lines
130 B
Ruby

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