0
votes
0answers
36 views

Rails 3 / Active Record - Data modeling strategy for dynamic number of fields in a huge form?

I have a huge form that I am working on - It looks something like this: http://blassdesign.com/temp/screenshot.jpg As you can see, there is a ton of data there. I already broke up the form into ...
1
vote
1answer
584 views

How to update a model's “updated_at” field only for a subset of column updates?

There is a typical blog application. Each user has_many posts. Each post has_many tags. I'm sorting each post by updated_at so the most recently updated post will show up on top. So for example, if I ...
0
votes
1answer
93 views

Rails: One Inherited Comment Model vs Two Slightly Differing Comment Models

I have the current (simplified) Model setup -- basically two very different models: Product - Title Restaurant - Title Comment - Message - gps_cords (sometimes?!) My goal is to let people leave ...
2
votes
1answer
238 views

Active Record Relation Joins - 3 main tables, 2 join tables

The setup I have a data model with 3 major tables (users, links, topics) with 2 join tables (link_saves and link_topics). My models: User has_many :link_saves, :class_name => 'LinkSave', ...
0
votes
1answer
63 views

what's a good way to implement this data structure in ROR activerecord?

I don't want to reinvent the wheel here so would really appreciate some advice! I get the feeling that there's a 'standard' model for entity->attribute->value system? Attributes are pre-defined for ...
0
votes
1answer
102 views

Database Design + Rails associations with :through using metadata

Here is the scenario: I am building a system that will let users search for each other based on their skill sets. Users have skills. Skills are universal objects and are shared amongst users. Users ...
2
votes
2answers
2k views

Simulating has_many :through with Mongoid

I'm trying to create an event platform using MongoDB as the db. I want a many-to-many relationship between Events and Users. The thing is, I want there to be properties in the relationship (e.g., ...
0
votes
0answers
59 views

Problem Accessing Data through a Join Model based on a single filtering attribute

I am modeling the relationship between a Song and Artist as such: class Song < ActiveRecord::Base # Relationships has_many :releases has_many :artists, :through => :releases has_many ...
0
votes
1answer
155 views

Rails - unpersisted parent needs to find candidate children and assign them to itself. Then display “new” form

This code shows what I'd like to do, but of course won't work because the Parent does not yet have an id: class Parent < ActiveRecord::Base has_many :children after_initialize :find_children, ...
5
votes
4answers
2k views

Saving join attributes through a has_many :through with :conditions

I have an Artist model that looks like this: # app/models/artist.rb class Artist < ActiveRecord::Base # Relationships has_many :releases has_many :songs, :through => :releases ...
43
votes
2answers
6k views

How to implement has_many :through relationships with Mongoid and mongodb?

Using this modified example from the Rails 3 guides, how does one model a relational "has_many :through" association using mongoid? The challenge is that mongoid does not support has_many :through as ...
3
votes
3answers
239 views

Many rails Models with the same flag. What's the best practice?

One of mine rails projects has many models with the same flag: approved. I don't like to manage the flag 'approved' for so many models, and I am seeking a DRY solution. I have found some plugin like ...
2
votes
2answers
166 views

Setting default_address in Rails User model

I'm currently working on a model for a User that has_many :addresses; These addresses form a small address book from which a user can choose shipping and mailing addresses. My question is, what's the ...
0
votes
1answer
254 views

has_many :through association results in NameError

I'm trying to do a many-to-many relationship in rails. It's my first try but I'm having a hard time to succeed. I want to be able to do @user.properties or @property.users. #property.rb has_many ...
0
votes
0answers
67 views

How to model a specific many to many association

Currently I have several models set up like so, class Account < ActiveRecord::Base has_many :office_hours has_many :staff_positions end class OfficeHour < ActiveRecord::Base belongs_to ...
0
votes
1answer
599 views

Rails ActiveRecord- has_many through and belongs_to a related model

I have 3 models sites, user_favorites and users. Relevant relationships: class Site < ActiveRecord::Base has_many :users, :through => :user_favorites class UserFavorite < ...
2
votes
2answers
190 views

how to store/model users/faceboook users/linkedin users, etc, with ActiveRecord?

My app has "normal" users: those which come through a typical signup page facebook(FB) users: those which come from Facebook connect "FB-normal" users: a user that can log with both email/password ...