Files
openfoodnetwork/db/migrate/20130629120641_change_adjustments_amount_precision.spree.rb

9 lines
278 B
Ruby

# This migration comes from spree (originally 20130319082943)
class ChangeAdjustmentsAmountPrecision < ActiveRecord::Migration
def change
change_column :spree_adjustments, :amount, :decimal, :precision => 10, :scale => 2
end
end