Sha256: e0151b3658574f7c7dcf34065074d531bfcf10c8c12fe950f869364d4ea93975
Contents?: true
Size: 239 Bytes
Versions: 56
Compression:
Stored size: 239 Bytes
Contents
class PaymentTotalForOrders < ActiveRecord::Migration def self.up add_column :orders, :payment_total, :decimal, :precision => 8, :scale => 2, :default => 0.0 end def self.down remove_column :orders, :payment_total end end
Version data entries
56 entries across 44 versions & 9 rubygems