So, I'm having the following setup in Rails 4 with PostgreSQL
# migration
create_table :custom_category_groups do |t|
t.string :name
t.string :content_types, array: true, default: []
end
# controller
class CustomCategoryController < ApplicationController
# ...
def update
@custom_category_group = CustomCategoryGroup.new(custom_category_group_params)
if @custom_category_group.update(custom_category_group_params)
# ...
end
end
private
def custom_category_group_params
params.require(:custom_category_group).permit(:name, content_types: [])
end
end
# view
= form_for @custom_category_group do |f|
= f.collection_check_boxes :content_types, %w(interviews testimonials blogs).map { |ct| [ ct.titleize, ct ] }, :last, :first
When I'm saving a custom category group I get the following error:
TypeError - can't cast Array
When I take a look in the log I see the following DB statement being issued:
UPDATE "custom_category_groups" SET "content_types" = $1, "updated_at" = $2
WHERE "custom_category_groups"."id" = 2 [[nil, ["interviews", ""]],
["updated_at", Mon, 26 Aug 2013 12:15:53 UTC +00:00]]
As you can see Rails somehow can't resolve the proper name for content_types (the nil
in the braces after the WHERE
clause).
The really weird thing: If I simply reload the page and submit the form again (when the browser asks) me, THE SAVING WORKS!????