Sha256: c957c922ead212fa3dff3bbd2caec3e8a600dacc9f31d52391dbd640fb895b8d
Contents?: true
Size: 427 Bytes
Versions: 3
Compression:
Stored size: 427 Bytes
Contents
class CreateShoppingCartAddresses < ActiveRecord::Migration[5.1] def change create_table :shopping_cart_addresses do |t| t.string :type t.string :first_name t.string :last_name t.string :address t.string :city t.string :zip t.string :country t.string :phone t.integer :user_id, index: true t.integer :order_id, index: true t.timestamps end end end
Version data entries
3 entries across 3 versions & 1 rubygems