I have used RESTful techniques to generate a model (in fact, I am using Devise gem, which does that for me), and I have added new fields called first_name and last_name to the model. Migration went fine. I added attr_accessor :first_name, :last_name to the model and expected it would just work. But when I try to mass-assign new instances with Doctor.create({:first_name=>"MyName"}) etc., I am getting errors saying I can't mass-assign protected attributes.

I thought the whole point of using attr_accessor was to get around the protectedness of the fields of a model. Can you help me make sense of this message?

Edit: oh, and by the way the records do not get created either. I thought they should be since this is just a warning, but they are not on the database.

Edit2: here is my model

class Doctor < User
  has_many :patients
  has_many :prescriptions, :through=> :patients

  validates_presence_of :invitations, :on => :create, :message => "can't be blank"

  attr_accessor :invitations
end

and the schema, which doesn't have the first_name and last_name because they are created in the users table, which is the ancestor of doctors. I used single table inheritance.

create_table :doctors do |t|
  t.integer :invitations

  t.timestamps
end

and this is the migration to change the users table

add_column :users, :first_name, :string
add_column :users, :last_name, :string
add_column :users, :type, :string

EDIT: here is the seed file. I am not including the truncate_db_table method, but it works.

%w{doctors patients}.each do |m|
  truncate_db_table(m)  
end  

Doctor.create(:invitations=>5, :email=>"email@gmail.com", :first_name=>"Name", :last_name=>"LastName")
Patient.create(:doctor_id=>1, :gender=>"male", :date_of_birth=>"1991-02-24")
link|improve this question

79% accept rate
feedback

4 Answers

up vote 45 down vote accepted

Don't confuse attr_accessor with attr_accessible. Accessor is built into Ruby and defines a getter method - model_instance.foo # returns something - and a setter method - model_instance.foo = 'bar'.

Accessible is defined by Rails and makes the attribute mass-assignable (does the opposite of attr_protected).

If first_name is a field in your model's database table, then Rails has already defined getters and setters for that attribute. All you need to do is add attr_accessible :first_name.

link|improve this answer
oh, man. Is that right? Let me try this. – picardo Oct 15 '10 at 16:54
Now I'm getting "unknown attribute" error on invitations when I rake the seed file. I know I have this field in the database, though; it's in the migration file... – picardo Oct 15 '10 at 17:16
It's in the migration file, but did you run the migrations? Post your seeds file. – Robert Speicher Oct 15 '10 at 17:31
ok, I edited the post to include the seeds file. – picardo Oct 15 '10 at 17:50
Did you update the other stuff? You've still got attr_accessor in your model even though that's wrong. – Robert Speicher Oct 15 '10 at 18:05
show 2 more comments
feedback

Had the same problem but found the solution too:

The problem is with the field named :type, apparently rails doesn't like it.

Change it to :user_type and your problem is solved.

link|improve this answer
And I quote: "The single-table inheritance mechanism failed to locate the subclass: 'MyClass'. This error is raised because the column 'type' is reserved for storing the class in case of inheritance. Please rename this column if you didn't intend it to be used for storing the inheritance class or overwrite MyClass.inheritance_column to use another column for that information." – Arcolye Nov 9 '11 at 10:57
Had the same problem, thanks! – Dean Perry May 2 at 13:38
feedback

I have found a solution to this problem

If you are simply doing early stage development stuff, you do not need the extra feature which blocks mass assignment. The thing is, github was hacked by some dude (whitehat or black I'm not sure) but anyway, the hacker basically did it by changing the code a little bit in order to pass some values (boolean values indicating he was an admin or something) that weren't meant to be passed.

Anyway, here's how I fixed mine (bear in mind this is a security hole but you can deal with it later):

Go to /config/application.rb Scroll down towards the end where you'll find

{config.active_record.whitelist_attributes = true}

Set it to false. That's it! This is the simple solution for early coding. You'll have to deal with this later as it is a pretty glaring security hole. It's fine for the development environment and testing though, IMHO.

link|improve this answer
feedback

Don't use attr_accessor here. ActiveRecord creates those automatically on the model. Also, ActiveRecord will not create a record if a validation or mass-assignment error is thrown.

EDIT: You don't need a doctors table, you need a users table with a type column to handle Rails Single Table Inheritance. The invitations will be on the users table. Ah, I see in your added code sample you do have type on users. Get rid of the doctors table, move invitations over to users, and I think you should be ok. Also get rid of the attr_accessor. Not needed.

Keep in mind that rails STI uses the same table for all classes and subclasses of a particular model. All of your Doctor records will be rows in the users table with a type of 'doctor'

EDIT: Also, are you sure you only want to validate presence of invitations on creation and not updates?

link|improve this answer
When I don't use it, though, Rails tells me "method not found" as I am raking the seed file. What should I do in that case? – picardo Oct 15 '10 at 16:46
Can you post your model code and rake task? Also the migration that created the model. Make sure those columns are created in the db. – Dave Sims Oct 15 '10 at 16:48
ok, I added those to the post. – picardo Oct 15 '10 at 16:53
I didn't realize STI used only one table for all subclasses! – picardo Oct 15 '10 at 18:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.