11 lines
288 B
Ruby
11 lines
288 B
Ruby
class CreateNeedFurbishInterests < ActiveRecord::Migration
|
|
def change
|
|
create_table :need_furbish_interests do |t|
|
|
t.references :need, index: true, foreign_key: true
|
|
t.references :customer, index: true, foreign_key: true
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|