I have two existing Models - Schools and Users.
class School < ActiveRecord::Base
has_and_belongs_to_many :users
class User < ActiveRecord::Base
has_and_belongs_to_many :schools
My question is, how can I assign and user to a school? I can't quite figure out how to get it so that School.users returns any values.