Files
old-ribica/front-api/db/migrate/20150312073820_create_places.rb

12 lines
221 B
Ruby

class CreatePlaces < ActiveRecord::Migration
def change
create_table :places do |t|
t.string :postal_code
t.decimal :delivery_price
t.string :name
t.timestamps null: false
end
end
end