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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:06:02+00:00 2026-05-26T15:06:02+00:00

I have a field type in a model called user which is an int

  • 0

I have a field type in a model called user which is an int in the db. The value of the int speficies the type of store it is. Example:

  • 0 = mom
  • 1 = dad
  • 2 = grand mother
  • and so on

I have several other fields like this so it’s overkill to create association tables.

Instead of checking for those int values over the place in conditional statements in model and controller logic, is there a place in rails to store these constants.

So that I could do this from my models and controllers?

if myuser.type == MOM
elsif myuser.type == GRAND_MOTHER

EDIT: Solution I went with at the end:

In model:

  # constants
  TYPES = {
    :mom => 0,
    :dad => 1,
    :grandmother => 2,
    :grandfather => 3
  }

In logic:

if u.type == User::TYPES[:mom]

Even though it’s longer, I felt it to be more intuitive for other developers when they’re reading my code. Thanks to Taro below for this solution.

  • 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-26T15:06:03+00:00Added an answer on May 26, 2026 at 3:06 pm

    Something like:

    class User < ActiveRecord::Base
    
      TYPES = %w{ mom dad grandmother grandfather son }
    
      TYPES.each_with_index do |meth, index|
        define_method("#{meth}?") { type == index }
      end
    
    end
    
    
    u = User.new
    u.type = 4
    u.mom? # => false
    u.son? # => true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Model called statistics which has a value field that contains Goals
I have a model with a field called type and a field called value.
I have a Rails Model called Events which has as field/attribute called :description. I
I have a model called Booking which has a persistent DateTime field. However I
I have a field called date_time in the database which is of type datetime
All rows in a table have a type field which is either 0 or
I have a requirement to bind an entity of type 'Field' which has a
I have a model called Metadatum (silly, I know) which has two fields, key
I have a problem when i try to create new model field type -
I have model called Polynom and model parametres are degree and type, i have

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.