Re: [Rails] Rails carrierwave has_many error

2015-07-10 Thread Colin Law
On 10 July 2015 at 17:34, Bazley <1975...@gmail.com> wrote: > Thank you Colin, that fixed it. I appreciate your help. > The solution raises an interesting question, fully specified here on SO if > you're interested: > >> >> >> http://stackoverflow.com/questions/31306347/rails-carrierwave-has-many-e

Re: [Rails] Rails carrierwave has_many error

2015-07-10 Thread Bazley
Thank you Colin, that fixed it. I appreciate your help. The solution raises an interesting question, fully specified here on SO if you're interested: > > http://stackoverflow.com/questions/31306347/rails-carrierwave-has-many-error/31345762#31345762 > The question is, is a solution possible wi

Re: [Rails] Rails carrierwave has_many error

2015-07-09 Thread Colin Law
On 9 July 2015 at 21:28, Bazley <1975...@gmail.com> wrote: > Each User has_one Character. Each Character has_one :profilepicture, of > class Picturething, which holds a Carrierwave mount_uploader to upload a > singe picture. Each Character has_many :standardpictures, also of class > Picturething. P

[Rails] Rails carrierwave has_many error

2015-07-09 Thread Bazley
Each User has_one Character. Each Character has_one :profilepicture, of class Picturething, which holds a Carrierwave mount_uploader to upload a singe picture. Each Character has_many :standardpictures, also of class Picturething. Picture upload is handled in views/users/edit, which hits the up