11 lines
214 B
Ruby
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
|