11 lines
198 B
Ruby
11 lines
198 B
Ruby
|
class CreateHomeworkAttaches < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :homework_attaches do |t|
|
||
|
t.integer :bid_id
|
||
|
t.integer :user_id
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|