Sha256: 9b23b6bb4d88ca793ef61eee25043cdfff2bd0825e433bebe5b2855627626df6
Contents?: true
Size: 543 Bytes
Versions: 3
Compression:
Stored size: 543 Bytes
Contents
class CreateSimpleCartCreditCard < ActiveRecord::Migration def change create_table "simple_cart_credit_cards", force: :cascade do |t| t.string "number" t.string "cvv" t.string "expiration_year" t.string "expiration_month" t.string "firstname" t.string "lastname" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.integer "user_id" t.integer "order_id" end add_index "simple_cart_credit_cards", ["order_id"] end end
Version data entries
3 entries across 3 versions & 1 rubygems