socialforge/db/migrate/20150519020031_create_homew...

12 lines
221 B
Ruby

class CreateHomeworkTests < ActiveRecord::Migration
def change
create_table :homework_tests do |t|
t.text :input
t.text :output
t.integer :homework_common_id
t.timestamps
end
end
end