6 lines
119 B
Ruby
6 lines
119 B
Ruby
|
|
class AddSupplierToItem < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :items, :supplier_id, :integer
|
||
|
|
end
|
||
|
|
end
|