You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20150519020031_create_homew...

16 lines
266 B

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