removed special offer id from items

This commit is contained in:
Senad Uka
2015-03-21 06:30:18 +01:00
parent 88c53a8512
commit 38548e3e33
11 changed files with 285 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class CreateDeliveryTimeEstimations < ActiveRecord::Migration
def change
create_table :delivery_time_estimations do |t|
t.string :name
t.integer :duration_in_days
t.timestamps null: false
end
end
end