Sha256: b06d4fdf61ac4da8312d516175389fed8cabd72b83259ac4f13cb72fa63426f9
Contents?: true
Size: 602 Bytes
Versions: 39
Compression:
Stored size: 602 Bytes
Contents
class CreateCommissionSections < ActiveRecord::Migration def change create_table :commission_sections do |t| t.belongs_to :commission t.belongs_to :agent t.belongs_to :terminal_profile t.integer :payment_type t.decimal :min, :precision => 38, :scale => 2 t.decimal :max, :precision => 38, :scale => 2 t.decimal :percent_fee, :precision => 38, :scale => 2, :null => false, :default => 0 t.decimal :static_fee, :precision => 38, :scale => 2, :null => false, :default => 0 t.timestamps end end end
Version data entries
39 entries across 39 versions & 1 rubygems