Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9167593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:25:44+00:00 2026-06-17T15:25:44+00:00

Thought this would be a little straightforward, I may be missing something very simple.

  • 0

Thought this would be a little straightforward, I may be missing something very simple. I wanted a dropdown list on the teams/create view that let me select the appropriate division for a team, the id of which would be placed in the division_id column in the teams table.

I have two models:

class Team < ActiveRecord::Base
   attr_accessible :city, :name
   belongs_to :divison
   has_many :players
end

class Division < ActiveRecord::Base
   attr_accessible :name
   has_many :teams
end

and their attendant migrations:

create_table :divisions do |t|
  t.string :name

  t.timestamps
end

create_table :teams do |t|
  t.string :name
  t.string :city
  t.integer :division_id

  t.timestamps
end

On the view, the dropdown list works as expected:

<%= collection_select(:team, :division_id, Division.all, :id, :name) %>

However, when I submit the form, the value is not placed in :division_id. Instead, I get a Can't mass-assign protected attributes: division_id error. From the searching I’ve done, I could remove attr_accessible, but that would present a security flaw.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:25:45+00:00Added an answer on June 17, 2026 at 3:25 pm

    You can modify your attr_accessible in your Team model:

    attr_accessible :city, :name, :division_id
    

    I imagine in your TeamController create action you are simply calling Team.new(params[:team]), which is doing a mass-assignment of attributes. For every attribute you want to support for mass-assignment, you need to declare it in your attr_accessible.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I thought this would be very simple but I'm struggling a little. I'm working
Hmm i would have thought this would be a little more straightforward.. in my
I thought this would be fairly simple but it turns out not to work
I thought this would be very easy. I downloaded the JDK, extracted src.zip, modified
Okay at first I thought this would be pretty straightforward. But I can't think
OK so I thought this would be pretty simple but it's tripping me up..
Before I throw something ugly together I thought this would be a good one
So, I thought this would be simple and, well, I was wrong. Here is
I thought this would be fairly easy, but I'm totally baffled. I want one
I thought this would be pretty easy but I'm running into all sorts of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.