Files
old-ribica/front-api/db/migrate/20150321052318_create_delivery_time_estimations.rb
2015-03-21 06:30:18 +01:00

11 lines
231 B
Ruby

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