Sha256: f534a562c2fc59ec6307211bef38d54a4b40daeae3dbb04bcf2cb516429b1c73
Contents?: true
Size: 469 Bytes
Versions: 8
Compression:
Stored size: 469 Bytes
Contents
class CreatePuntoPagosRailsTransactions < ActiveRecord::Migration def change create_table :punto_pagos_rails_transactions do |t| t.references :payable, polymorphic: true t.string :token t.integer :amount t.string :error t.string :state t.timestamps null: false end add_index(:punto_pagos_rails_transactions, [:payable_id, :payable_type], name: "index_punto_pagos_rails_transactions_on_payable") end end
Version data entries
8 entries across 4 versions & 1 rubygems