mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-05 07:19:14 +00:00
9 lines
278 B
Ruby
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
|