change precision

This commit is contained in:
Andreas Stephanides
2014-04-06 23:07:07 +02:00
parent 6159503dd9
commit 8c284e6363

View File

@@ -0,0 +1,8 @@
class ChangeDecimalLvas < ActiveRecord::Migration
def up
change_column :lvas,:ects, :decimal, :precision=>5, :scale=>3
end
def down
end
end