Sha256: 4bd59c6cad68acbf0f2d1bd60247de2ad74c688ebe15a8a865fb5610ace1eb4b

Contents?: true

Size: 899 Bytes

Versions: 19

Compression:

Stored size: 899 Bytes

Contents

class CreateSpreeStoreCredits < ActiveRecord::Migration
  def change
    create_table :spree_store_credits do |t|
      t.references :user
      t.references :category
      t.references :created_by
      t.decimal :amount, precision: 8, scale: 2, default: 0.0, null: false
      t.decimal :amount_used, precision: 8, scale: 2, default: 0.0, null: false
      t.text :memo
      t.datetime :deleted_at
      t.string :currency
      t.decimal :amount_authorized, precision: 8, scale: 2, default: 0.0, null: false
      t.integer :originator_id
      t.string :originator_type
      t.integer :type_id
      t.timestamps null: false
    end

    add_index :spree_store_credits, :deleted_at
    add_index :spree_store_credits, :user_id
    add_index :spree_store_credits, :type_id
    add_index :spree_store_credits, [:originator_id, :originator_type], name: :spree_store_credits_originator
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
spree_core-3.1.14 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.13 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.12 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.11 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.10 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.9 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.8 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.7 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.6 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.5 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.4 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.3 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.2 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.1 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.0 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.0.rc4 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.0.rc3 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.0.rc2 db/migrate/20150118210639_create_spree_store_credits.rb
spree_core-3.1.0.rc1 db/migrate/20150118210639_create_spree_store_credits.rb