Basically my issue is that when trying to use nested views in my rails application I need to store both general users and admins for a page. Both contain the same information I just need to know who is whom. I have a Team model:
class Team < ActiveRecord::Base
attr_accessible :auth_token, :team_name, :template
has_many :events, :dependent => :destroy
has_many :users
has_many :admins, :class_name => "User", :foreign_key => 'admin_id'
accepts_nested_attributes_for :admins
end
And my schema for the Teams table contains an admin_id field. I do not understand why I am getting this error. I have tried quite a bit of googling and searching through forums and despite finding some similar issues I couldn't find all of the same combinations of issues that I was having.
Thanks in advance.
EDIT User Model:
class User < ActiveRecord::Base
require 'digest/sha1'
attr_accessor :pre_pass
belongs_to :team
attr_accessible :name, :player
attr_protected :password
validates :name, :presence => true
validates :pre_pass, :presence => true
before_save :encrypt_pass
after_save :clear_pre_pass
end
Teams/new View
<%= form_for(@team) do |f| %>
<% if @team.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@team.errors.count, "error") %> prohibited this team from being saved:</h2>
<ul>
<% @team.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :team_name %><br />
<%= f.text_field :team_name %>
</div>
<div class="field">
<%= f.label :template %><br />
<%= f.number_field :template %>
</div>
<div class="field">
<%= f.label :auth_token %><br />
<%= f.number_field :auth_token %>
</div>
<p>
<%= f.fields_for :admins do |builder| %>
<%= render "admin_fields", :f => builder %>
<% end %>
</p>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
Error ActiveRecord::UnknownAttributeError in TeamsController#new
unknown attribute: user_id
app/controllers/teams_controller.rb:28:in `new'
TeamController#new
def new
@team = Team.new
@team.admins.build
respond_to do |format|
format.html # new.html.erb
format.json { render json: @team }
end
end

