Sha256: 7fb3dbd5ee59b88d89dcb0ad851b76869ce5e5ed785ca685851030d84bb692e9
Contents?: true
Size: 447 Bytes
Versions: 18
Compression:
Stored size: 447 Bytes
Contents
class CreateBloomRemitTxns < ActiveRecord::Migration def change create_table :bloom_remit_txns do |t| t.integer :status, null: false, default: 0 t.string :recipient_type, null: false t.string :recipient_id, null: false t.references :sender, polymorphic: true, null: false t.decimal :amount, null: false t.string :account_name t.string :account_id t.uuid :secret, null: false end end end
Version data entries
18 entries across 18 versions & 1 rubygems