socialforge/db/migrate/20141031111632_create_homew...

11 lines
214 B
Ruby

class CreateHomeworkEvaluations < ActiveRecord::Migration
def change
create_table :homework_evaluations do |t|
t.string :user_id
t.string :homework_attach_id
t.timestamps
end
end
end