Sha256: ed5e4b78c9a196ff4b8522705d678980c752bce21b6ccf46204856f7f70bc1c1
Contents?: true
Size: 273 Bytes
Versions: 37
Compression:
Stored size: 273 Bytes
Contents
class CreateBillingDiscounts < ActiveRecord::Migration def change create_table :billing_discounts do |t| t.belongs_to :account, index: true t.belongs_to :charge t.decimal :percent_ratio, precision: 6, scale: 3 t.timestamps end end end
Version data entries
37 entries across 37 versions & 1 rubygems