Sha256: 0e0648f1ea49fe4eee4742acb429b485a9f73d4abe296056aa178f9454e47a94
Contents?: true
Size: 275 Bytes
Versions: 37
Compression:
Stored size: 275 Bytes
Contents
class CreateBillingCharges < ActiveRecord::Migration def change create_table :billing_charges do |t| t.belongs_to :account, index: true t.references :chargable, polymorphic: true, index: true t.money :price t.timestamps end end end
Version data entries
37 entries across 37 versions & 1 rubygems