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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T05:13:38+00:00 2026-05-15T05:13:38+00:00

In a rails model, is it possible to do something like class Example <

  • 0

In a rails model, is it possible to do something like

class Example < ActiveRecord::Base
  #associations  

  validates_presence_of :item_id, (:user_id OR :user_email)

  #functions
end

Where the model has 3 columns of :item_id, :user_id, and :user_email?
I want the model to be valid as long as I have a :user_id or a :user_email.

Idea being that if the item is recommended to a person who isn’t currently signed up, it can be associated via email address for when the recommended person signs up.

Or is there a different method that I can use instead?

  • 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-15T05:13:39+00:00Added an answer on May 15, 2026 at 5:13 am

    One approach is to wrap those fields as a virtual attribute, say:

    class Example < ActiveRecord::Base
    
      validates_presence_of :referral
    
      def referral
        user_id || user_email
      end
    end
    

    or you can just throw a custom validate validation method. See custom validations on the Rails API

    If both user_id and user_email come from another model, perhaps it’s better to add the association instead

    class Example
      belongs_to :user
      validates_associated :user
    
      before_validate :build_user_from_id_or_email
    
      def build_user_from_id_or_email
        # ... Find something with the parameters
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to implement, in Rails 3, an association class ApiCredentials < ActiveRecord::Base
I have a rails 3.1 app with the following Models: class Post < ActiveRecord::Base
I have a parent class in rails that inherits from ActiveRecord::Base. I'm trying to
I have the following model: class Advisor < ActiveRecord::Base belongs_to :course end class Course
I am calling an API from a Rails model and I would like to
Possible Duplicate: Custom model attribute (column name) title in Ruby on Rails I've been
Possible Duplicate: Access a view helper for a model in rails I know this
I have a rails model where I want to update an attribute by calculating
In my rails model I have some kind of template system. I want to
In a Rails model I am trying to acheive a named_scope that filters on

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.