diff --git a/db/migrate/20140406204115_change_decimal_lvas.rb b/db/migrate/20140406204115_change_decimal_lvas.rb new file mode 100644 index 0000000..5f1c5e0 --- /dev/null +++ b/db/migrate/20140406204115_change_decimal_lvas.rb @@ -0,0 +1,8 @@ +class ChangeDecimalLvas < ActiveRecord::Migration + def up + change_column :lvas,:ects, :decimal, :precision=>5, :scale=>3 + end + + def down + end +end