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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:47:14+00:00 2026-05-13T16:47:14+00:00

You know how some bug trackers (and other software) allow you to add custom

  • 0

You know how some bug trackers (and other software) allow you to add custom fields?

Typically this is done with a data structure that looks something like this:

  Items
----------
 ID | NAME | ITEM_TYPE_ID


 FieldDefinitions
---------------------------------------
 ID | ITEM_TYPE_ID | FIELD_NAME | FIELD_TYPE

 FieldValues
---------------------------------------
ID | FIELD_ID | ITEM_ID | VALUE

I’m trying to figure out the best way to approach this design in Rails. There will be many models which I want to allow extending simple properties.

When I retreive an Item I’d like it to include a hash of the addition field values that have been defined for that model.

  • 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-13T16:47:14+00:00Added an answer on May 13, 2026 at 4:47 pm

    Something like…?

    class Item < ActiveRecord::Base
      has_many :field_values
      has_many :field_definitions, :through => :field_values
    
      def custom_fields_hash
        cfh = {}
        self.field_values.each |fv|
          cfh[fv.field_definition] = fv
        end
        cfh
      end
    end
    
    class FieldValue < ActiveRecord::Base
      belongs_to :item
      belongs_to :field_definition
    end
    
    class FieldDefinition < ActiveRecord::Base
      has_many :field_values
      has_many :items, :through => field_values
    end
    

    Or, you could change

    cfh[fv.field_definition] = fv
    

    …to…

    cfh[fv.field_definition.field_name] = fv.value
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know some languages allow this. Is it possible in C++?
I would like to know if it's a bug or some mistake of mine.
I know some SEO, but I have to ask: Is it unnecessary to add
The full question should be Is this correct or is it some bug I
I've been working on some custom classes including a debug bug method. Using a
There are some bug fixes that have been done in a COM component. Each
I searching people who know some experience with bug tracking on client machines, if
So far, I'm using $(this).attr('class'); But I worry about compatibility because I know some
I know some of the escape characters in Java, e.g. \n : Newline \r
Someone know some interesting and complete tutorial about how to create a Parent-Child dimension

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.