I am trying to use Carrierwave with multiple image uploads. After following the carrierwave guide on github I do:
rails g migration add_images_to_areas images:json
rake db:migrate
But seeing on my schema, my areas table does not show up, instead I get:
# Could not dump table "areas" because of following StandardError
# Unknown type 'json' for column 'images'
What should I do now? Should I use another type instead of json, but what?
Sorry if this is an amateur question.