Tagged Questions

Single Table Inheritance - a mechanism to add the principle of object-oriented inheritance onto relational database models by having child classes map onto the same table as their ancestors.

learn more… | top users | synonyms

7
votes
2answers
2k views

STI and form_for problem

I am using Single Table Inheritance for managing different types of projects. Models: class Project < ActiveRecord::Base end class SiteDesign < Project end class TechDesign < Project end ...
5
votes
0answers
400 views

ActiveRecord STI: How can I break out of the parent class' default scope

On Rails 3.1 RC6, given class Animal < ActiveRecord::Base default_scope where(legs: 4) end The following does not work as expected: class Man < Animal default_scope unscoped.where(legs: ...
5
votes
1answer
298 views

performant ordering of keys in a MySQL compound index (WRT Rails Polymorphic associations and STI)

Previously, I asked this question about compound indexes on polymorphic foreign keys in ActiveRecord. The basis of my question was my understanding that indexes should be based on the cardinality of ...
5
votes
2answers
498 views

Rails: PolyMorphic or STI or something else for User management?

I've been banging my head against a wall trying to wrap my head around this, so any guidance would be much appreciated... I want to have a User system setup to reflect the following hierarchy: User ...
5
votes
1answer
388 views

How many classes is too many? Rails STI

I am working on a very large Rails application. We initially did not use much inheritance, but we have had some eye opening experiences from a consultant and are looking to refactor some of our ...
4
votes
6answers
2k views

Rails Single table inheritance problem

I'm trying to setup single table inheritance in my Rails app for a User model and its subclasses Member, Subscriber, and Staff. I have a model file for each: user.rb, member.rb, etc The user model ...
4
votes
1answer
603 views

Is this a legitimate use of Rails' Single Table Inheritance?

I've just been reading Chad Fowler's blog post about 20 Rails Development No-Nos. On Single Table Inheritance he comments: The storage of a column called “type” which holds a class name is a ...
3
votes
1answer
332 views

Single Table Inheritance and routing in Ruby on Rails 3.0

I am having some trouble getting routing to play nicely with Single Table Inheritance in my Ruby on Rails application. I am using Ruby 1.9.2 and Rails 3.0.6. This is in development so the back-end is ...
2
votes
3answers
80 views

Rails app using STI — easiest way to pull these records?

I'm learning my way around Rails and am working on a sample app to keep track of beer recipes. I have a model called Recipe which holds the recipe name and efficiency. I have a model called ...
2
votes
1answer
175 views

Rails - Single Table Inheritance problems. Any solutions / alternatives

For my project management application, I am currently using Single Table Inheritance so that: Lead < Requirement Project < Requirement By which I mean to say that Lead is a Requirement and ...
2
votes
1answer
203 views

Wrong sql generated by ActiveRecord for has_many :through relation with STI

Consider these models: class First < ActiveRecord::Base has_many :tags has_many :thirds, :through => :tags end class Second < ActiveRecord::Base end class Third < Second has_many ...
2
votes
1answer
369 views

Rails STI validation inheritance

I have STI models in my Rails application. The ancestor model has validations with the validates_... methods which are working fine. But I have custom validations as well, and I would like to add ...
2
votes
2answers
181 views

How to model “appointments” in Rails?

Here's the scenario I'm facing: An appointment could be scheduled for: today some time during the week on a specific date So, the attributes can be different for each "type" of appointment. I ...
2
votes
1answer
302 views

Rails STI conditional sub-classing from base class

I'm developing a project where I have an entity which may have two kinds of assets: Pictures and Videos, basically. Since I want all the assets to be on the same table and a single upload form for ...
2
votes
1answer
888 views

ActiveRecord Inheritance with Different Database Tables

I have just started investigating using more advanced models in Rails. One that I use regularly, with great success, is model where a many-to-many cross-reference relationship is accessed by a class ...
1
vote
0answers
29 views

Devise + STI + Authorization

I have the following situation: My app has several types of users: Owner, Team Member, Collaborator, Client, and Guest. (the Guest type isn't relevant for this question) These are the connections ...
1
vote
1answer
48 views

Different views for subclasses

I'm using STI subclasses and want to direct to different views for the different subclasses. At the moment I'm routing the subclass topic to the main class article like this: resources :topics, ...
1
vote
1answer
30 views

Rails and STI with has_many doesn't recognize subclass

I have the following: class Series < ActiveRecord::Base has_many :components end class Component < ActiveRecord::Base belongs_to :series end class Base < Component end class Shaft ...
1
vote
2answers
62 views

Rails Sti: single path, different controller

Have STI classes: class Page < ActiveRecord::Base belongs_to :user end class FirstTypePage < Page end class SecondTypePage < Page end Controllers for each class, class PageController ...
1
vote
2answers
64 views

Rails, STI and 'becomes' - f.object.errors not showing in view

My question is: why doesn't .becomes pass errors over to the new object? Isn't this the expected behaviour? I have the following single table inheritance classes in a rails app: class Document ...
1
vote
1answer
42 views

Acces STI type on create view and controller

Hello guys I've a a 2 model client and meal. client.rb class Client < ActiveRecord::Base has_many :meals accepts_nested_attributes_for :meals end meal.rb class Meal < ActiveRecord::Base ...
1
vote
0answers
66 views

Rails: Polymorphic association needed for subclasses in STI structure?

I'm working on a hobby project and have an abstract Event model with STI subclasses Meal, Outing, Medication, etc. The Event parent model has start_time, end_time, description, etc. I want to have ...
1
vote
1answer
40 views

It is OK to use STI in this situation?

I have a table named people Each person can be a client, a manager, an accountant, or any combination of the three. Also each of them have special table columns, besides the ones in the people table. ...
1
vote
2answers
120 views

Rails 2.3 STI return all child classes

I am using standard STI and want to create an input select on a form whose options are all child type of the parent class. So I'd like Parent.select_options to return ['Child1','Child2','Child3'] ...
1
vote
0answers
87 views

is single table inheritance (STI) available when using polymorphism in mongoid?

When using STI and polymorphism in ActiveRecord, the following is needed to ensure that :dependent => :destroy will work properly: def attachable_type=(sType) ...
1
vote
0answers
414 views

Active Admin and STI model error: Could not find table 'categories'

Update #1: Solved! Somehow Pow did not restart it's processes, so after updates it was loading the old config files. And it was loading the wrong locale file. I deleted gems I installed recently ...
1
vote
1answer
59 views

Client side validations and STI

I am using the client_side_validations gem. How do you suggest getting this to work with STI? class Vehicle < ActiveRecord::Base validates :year, :presence => true end class Car < Vehicle ...
1
vote
0answers
37 views

Include subclasses in to_xml

following problem: I am generating an xml document of my database-model. Inheritance via STI. My Model: class Entity < ActiveRecord::Base has_many :properties belongs_to :relationship ...
1
vote
1answer
52 views

When does STI make sense? We are storing the same information for every type but using it differently

So I know STI is the most reviled thing ever but I have an instance where I think it might actually make sense. My app is parsing a bunch of different types of xml files. Every file model stores the ...
1
vote
0answers
174 views

Rails 3: Should I use STI or just an extra column? (seeking advice)

I am working on a project (Rails 3.0.3) where I think I may need to use STI, but I am not sure if I should just add an extra column to a table and be done with it. In my object model, (for a gaming ...
1
vote
1answer
130 views

Render correct action within parent controller when using inheritance hierarchy - Rails

I am working with a code base that has this single table inheritance hierarchy: BlogEntryWizardController < BlogEntriesController < CommonEntryController < ApplicationController ...
1
vote
2answers
210 views

Why does rails not respect the type of a belongs_to associated object with STI, when its superclass is abstract?

I've come across this rather odd bit of behaviour in a rails application I'm working on. I have multiple types of Post in an inheritance heirarchy, and a Post has_many FeedEntries. class Post < ...
1
vote
2answers
365 views

RoR: STI / MTI / Mixin confusion

i have a problem which is i believe basic for most of the RoR developers. In fact, it's more about "understanding" than really programming it (i have already been programming a few modules to be able ...
1
vote
1answer
251 views

What is a better way to create STI model instance

Normally one would build a related model instance through its parent object: @child = @parent.children.build(params[:child]) But when we're using STI and we want to do this while at the same time ...
1
vote
3answers
1k views

Multi Table Inheritance with rails 3

Are there standards or best practices yet when it comes to multi table inheritance in rails 3? So far the best article I could find was: ...
1
vote
2answers
464 views

Dynamically instantiate Rails nested STI subclass?

Let's say I have a class like: class Basket < ActiveRecord::Base has_many :fruits Where "fruits" is an STI base class having subclasses like "apples", "oranges", etc... I'd like to be able to ...
1
vote
1answer
229 views

Rails STI: invoking child method

I've got something like this class Reply < AR::Base end class VideoReply < Reply def hello p 'not ok' end end class PostReply < Reply def hello p 'ok' end end ... So ...
1
vote
1answer
392 views

Problem with one-to-many relationship with Single Table Inheritance (Rails)

I have problem with STI and relationship in ActiveRecord. I think I missed something in the class methods, but I don't know for sure. Below is my models: class User < ActiveRecord::Base has_many ...
1
vote
2answers
718 views

HABTM association associated to single table inheritance help!

I have a product model that has many sections and a section can belong to many products. The section model has subclasses as features, standardAccessories and OptionalAccessories in a STI. Each ...
1
vote
2answers
938 views

Problem caching Model instances on a constant in Rails

I am using Single-Table Inheritance (STI) on one of my models for a Rails App and I am having problems storing model objects on a constant. I have isolated the problem into a sample project and ...
1
vote
2answers
366 views

Single-table-inheritance or two tables?

Suppose I have a table with the following columns (a list of words): word: varchar contributor: integer (FK) Now, suppose I wanted to have translations for each "word". What would be best? Having a ...
0
votes
1answer
16 views

Wrong sql request done with a “has_many” for a subclass

I'm trying to implement a "facebook like" like relationship. I wanted to use inheritance for that, so here's my structure : Likes with a user_id:integer attribute |> PostsLike that inherits Like with ...
0
votes
1answer
41 views

Rails Single table inheritance (STI) with the User model

Building a small reservation site. There are users (who login and work with the site) and there are guests who are being assigned to rooms. users can be (are?) guests but not all guests are also ...
0
votes
1answer
41 views

Rails Devise users with multiple types - perhaps STI?

I have an application where there are users, which are managed by Devise. The application's actual users will add people as "friends" and one other type, lets call them "workers". The "friends" and ...
0
votes
1answer
27 views

Where do indexes go when using STI?

I am using Rails and postgres. I have a couple of models using STI and i was wondering where i should put indexes on the tables and why? For example lets say i have the following setup: class ...
0
votes
1answer
20 views

Two simple questions about STI implementation

I am using STI for my user models. I have an User class, and the subclasses Seller and Customer. A user cannot be both, so I think STI is alright for this case. I have two questions: How do I ...
0
votes
1answer
57 views

Rails Single-Table Inheritance (STI): dependencies on the derived models

I'm about to use STI in my Rails 2.3 application. I've modeled it the following way: Base Class: class Tariff < ActiveRecord::Base def self.inherited(child) child.instance_eval do ...
0
votes
2answers
48 views

Rails STI mysql queries not using the “type” column

I have the following models: class Mark < ActiveRecord::Base validates_presence_of :user validates_presence_of :page belongs_to :user has_many :mettings has_many :tags, :through ...
0
votes
1answer
39 views

STI and virtual attribute inheritance (Rails 2.3)

Say I have an STI relationship, where Commentable is the super class, and NewsComment is the subclass. In Commentable I have: attr_accessor :opinionated def after_initialize self.opinionated = ...
0
votes
1answer
74 views

Rails Question: belongs_to with STI — how do i do this correctly?

I've been playing around with STI and belongs_to / has_many relationships and I'm a bit confused. I have a few questions based on a model configuration similar to: class Parental < ...

1 2