Sha256: bbe07c13b4c72586615293f315bc4df88e5a764a056d726f97a0ca29eb9ce014

Contents?: true

Size: 1.24 KB

Versions: 5

Compression:

Stored size: 1.24 KB

Contents

# @private
class CreateAdyenNotifications < ActiveRecord::Migration
  
  def self.up
    create_table :adyen_notifications do |t|
      t.boolean  :live,                  :null => false, :default => false
      t.string   :event_code,            :null => false, :limit => 40
      t.string   :psp_reference,         :null => false, :limit => 50
      t.string   :original_reference,    :null => true
      t.string   :merchant_reference,    :null => false
      t.string   :merchant_account_code, :null => false
      t.datetime :event_date,            :null => false
      t.boolean  :success,               :null => false, :default => false
      t.string   :payment_method,        :null => true
      t.string   :operations,            :null => true
      t.text     :reason,                :null => true
      t.string   :currency,              :null => true, :limit => 3
      t.integer  :value,                 :null => true
      t.boolean  :processed,             :null => false, :default => false
      t.timestamps
    end
     
    add_index :adyen_notifications, [:merchant_account_code, :psp_reference, :event_code, :success], :unique => true, :name => 'adyen_notification_uniqueness'
  end

  def self.down
    drop_table :adyen_notifications
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
adyen-2.4.0 lib/adyen/templates/notification_migration.rb
adyen_jpiqueras-2.5.0 lib/adyen/templates/notification_migration.rb
adyen-2.3.0 lib/adyen/templates/notification_migration.rb
adyen_jpiqueras-2.4.0 lib/adyen/templates/notification_migration.rb
adyen_jpiqueras-2.3.0 lib/adyen/templates/notification_migration.rb