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/20150715070534_create_test_...

15 lines
283 B

class CreateTestResult < ActiveRecord::Migration
def up
create_table :student_work_tests do |t|
t.integer :student_work_id
t.integer :homework_test_id
t.integer :result
t.timestamps
end
end
def down
drop_table :student_work_tests
end
end