6 lines
128 B
Ruby
6 lines
128 B
Ruby
|
|
class AddSpecialOfferToItem < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :items, :special_offer_id, :integer
|
||
|
|
end
|
||
|
|
end
|