I'm using Ruby on Rails with Postgresql and had a String db field for attachment. Now I support multi file upload and need to convert my Attachment String db field to String Array so that I can host multiple files.
How do I convert the existing "String" db field to "String Array" using Rails Console?

