Sha256: 45c6ab599b131e4c3e9e14faf85cef04086743c3845dc435c9f7d76bb61f41be
Contents?: true
Size: 500 Bytes
Versions: 12
Compression:
Stored size: 500 Bytes
Contents
class CreateSpreeKonbinis < ActiveRecord::Migration def change create_table :spree_konbinis do |t| t.string :convenience t.integer :user_id t.integer :payment_method_id t.string :brand, default: "konbini" t.string :receipt t.string :confirmation_code t.string :instructions_url t.datetime :expires_at t.timestamps null: false end add_index :spree_konbinis, :user_id add_index :spree_konbinis, :payment_method_id end end
Version data entries
12 entries across 12 versions & 1 rubygems