Files
codeocean/db/migrate/20140723135747_add_test_code_to_exercises.rb
2021-05-14 22:03:06 +02:00

8 lines
159 B
Ruby

# frozen_string_literal: true
class AddTestCodeToExercises < ActiveRecord::Migration[4.2]
def change
add_column :exercises, :test_code, :text
end
end