tags:

views:

84

answers:

1

I'm in need of allowing larger numbers in my Rails application. Is it safe to just change the decimal column from :precision => 10, :scale => 4 to :precision => 11, :scale => 4 without any interference on the existing data?

+1  A: 

Well I did it and it seems to be working, case closed.

peku