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 329425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:35:14+00:00 2026-05-12T09:35:14+00:00

I have a model Group and model User They are connected both directions with

  • 0

I have a model Group and model User

They are connected both directions with “has_many :through => groups_users”

groups_users table has an attribute, called moderator, specifying whether a user is a moderator of the group

when i am trying to update join module attribute, i get a mistake

way i am doing it now:

@group_membership=@group.groups_users.find_by_user_id(@user.id)

if @group_membership!=nil
 @group_membership.moderator=true
else
  @group_membership=GroupsUser.new(:user_id => @user.id, :group_id => @group.id, :moderator => true)
end

@group_membership.save

Code is producing mysql mistake:

 Unknown column 'id' in 'where clause': UPDATE `groups_users` SET `moderator` = 1 WHERE `id` = NULL

Is there nicer way to do that or should i add id column to the groups_users join model table and index it on id?

  • 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-05-12T09:35:14+00:00Added an answer on May 12, 2026 at 9:35 am

    Yes, you should create an id column on the groups_users table.

    Since you are using has_many :through the join table should have an id column on it (which is an auto-incrementing primary key). This is because every Rails model needs an id column and the join table has its own model (GroupsUser). BTW, you may want to rename to something like Membership).

    The other type of many-to-many association is has_and_belongs_to_many. I’m assuming you migrated from this because that does not use an id column on the join table. For more information about these two associations, check out my Railscasts episode on this topic.

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

Sidebar

Related Questions

as an example, i have a model Group and model User they are connected
I have two models, user and group. I also have a joining table groups_users.
I have the following model structure: class Group < ActiveRecord::Base has_many :group_products, :dependent =>
I have the following code to generate a table listing brand/model/submodel/style for a group
I have a project model that has a FK to a group model. Group
I have the models User and Group, and the join table Membership which uses
I have the following model in my Django app: class Group(models.model): name=models.CharField(max_length=30) users=Models.ManyToManyField(User) In
I have model Foo which has field bar. The bar field should be unique,
I have model Article it has field title with some text that may contain
I have a table defined in my Entity model. I also have the foreign

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.