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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:11:12+00:00 2026-06-15T07:11:12+00:00

I have a chat table with fields admin TINYINT owner_id INTEGER The goal is

  • 0

I have a chat table with fields

 admin TINYINT
 owner_id INTEGER

The goal is to have two relations in Yii:

'admin'=>array(
    self::BELONGS_TO, 'Admin', 'owner_id',
    'condition'=>'admin=1',
 ),

'user'=>array(
    self::BELONGS_TO, 'User', 'owner_id',
    'condition'=>'admin=0',
 ),

However, I got General error: 1 no such column: admin, and could manage only by adding all_ones and all_zeros columns to Admin table, so I could write

        'admin'=>array(
            self::BELONGS_TO, 'Admin', array('owner_id' => 'id', 'admin' => 'all_ones'),
        ),


        'user'=>array(
            self::BELONGS_TO, 'User', array('owner_id' => 'id', 'admin' => 'all_zeros'),
        ),

What is the way I could implement that without using such a hacks?

  • 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-15T07:11:13+00:00Added an answer on June 15, 2026 at 7:11 am

    Solution 1:

    Put your relations on User model (because the relation condition does filter the related model, not the model the relation is defined on)

    //On the User model:
    
    'chatsAdmin'=>array(
       self::HAS_MANY, 'Chat', 'owner_id',
       'condition'=>'admin=1',
    ),
    'chats'=>array(
       self::HAS_MANY, 'Chat', 'owner_id',
       'condition'=>'admin=0',
    ),
    

    Solution 2:

    Use finder to get a filtered set of Chats (or DataProvider)

    //relation on chat (without condition!)
    'user'=>array(self::BELONGS_TO, 'User', 'owner_id')
    
    //finder on chat model, will return ALL (use CActiveDataProvider if you need paging..)
    
    Chat::model()->with('user')->findAll('user.admin=:admin', array(':admin'=>1))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

okay, i'm setting up a multi-user chat system. i have a messages table, that
i am coding something like omegle random chat i have a table called chat_users
I have hasMany Through table which is Chats table with Chat model and I'm
I have this kind of table for simple chat: messages table structure +----+---------+-----------+---------+------+------+ |
I have a table chat . The column are id, sender, message, time, sender_email
I have a MEMORY table in MySQL for a live chat (maybe this isn't
I have a table used for a chat. Among others there is a field
I have a database in MYSQL and it has chat table which looks like
I have a chat user entry in a MySql table - id (primary key,
I have chat list view in which sender name should be left aligned and

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.