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

0
votes
1answer
25 views

Scopes doesn't work with STI

I want to do STI in Rails. class AbstractUser < ActiveRecord::Base self.table_name = 'users' belongs_to :organization, :inverse_of => :users # reporter user has_many :requests, ...
1
vote
1answer
28 views

STI in Rails: How do I change from a superclass to a subclass without accessing the “type” attribute directly?

So, I have the following: class Product < ActiveRecord::Base # Has a bunch of common stuff about assembly hierarchy, etc end class SpecializedProduct < Product # Has some special stuff ...
1
vote
0answers
9 views

Rails 3 devise_for and STI

I have the following models: User Athlete < User Coach < User In my routes, I have the following: devise_for :users, :controllers => { :omniauth_callbacks => ...
1
vote
3answers
26 views

Rails3 route STI Models

I have Vehicle and STI models Car and Motorcycle. I have currently routes configured as below: resources :vehicles resources :cars resources :motorcycles However, I'm thinking it would look ...
0
votes
0answers
18 views

Select options for subclass type in Ruby on Rails

I have a model called Status class Status < ActiveRecord::Base belongs_to :video, class_name: 'Video' attr_accessible :comment, :completed, :time_comp, :type, :video_id def video_name ...
1
vote
4answers
33 views

Single Table Inheritance with Conditions

I have model User and model Recruiter. Currently, these are two separate tables, but I want to make them one. Current: User: id, username, password, name Recruiter: id, user_id Ideal: User: id, ...
1
vote
0answers
19 views

Access belongs_to on a Mongoid::Document subclass

I have a model 'Index' as: class Index include Mongoid::Document belongs_to :project end Another model PercentileRankIndex inherits Index class PercentileRankIndex < Index def ...
0
votes
2answers
41 views

Setting up a parent and child model but child has it's own columns

I am trying to set up a structure with a parent that has some attributes and children models that inherit those attributes as well as maintain their own. Ideally I'd like a setup of class Parent ...
0
votes
1answer
20 views

Rails: Creating Wrong Table Name With a Namespaced STI

I have a model which uses STI: class Contributor::Name < Contributor::NameBase ... end From this model: class Contributor::NameBase < ActiveRecord::Base ... end Whenever ...
0
votes
0answers
27 views

Rails Add Subclass After Single Table Inheritance Is Already Set

I am using STI for Rails 3.2.11. When I setup the STI (and it works) and run migration then I try to add a subclass file (ex: subclass.rb) the newly added subclass is not recognized as a subclass. ...
0
votes
0answers
27 views

Rails: Is this an appropriate use of Single Table Inheritance?

I'm trying to model the concept of "Occasions" in a Rails model. Because I need to be able to support complex recurring occasions, I'm using the IceCube gem to attach a Schedule to each Occasion. I ...
1
vote
0answers
31 views

Rails: Undefined Method Error for Namespaced, STI-Inherited Class

I have an after_create callback in my Tag model: def auto_vote params = parametrize_media_tag(media_tag) Tag::Vote.cast_vote(params) end Which gives me this error: undefined method `cast_vote' ...
0
votes
1answer
32 views

Rails: Get the Class Name of a Child Class in a Parent Class Method

I have a STI table (Vote) with many children (Tag::Vote, User::Vote, Group::Vote, etc). All the children classes share a very similar method that looks like this: def self.cast_vote(params) value = ...
0
votes
1answer
37 views

Rails - 1 User model, but 2 Profile type models?

Just finished Michael Hartl's Tutorial, so this is kind of a newbie question. But, after lots of searching, I have not yet been convinced of a good solution for this: I have a single User model that ...
1
vote
1answer
34 views

rails- what value to use for type column? (STI)

Given a table of users: create_table :users do |t| t.string :email t.string :website t.string :type end Class User < ActiveRecord::Base and subscribers that inherit from User Class ...
0
votes
0answers
22 views

rails sti: Retrieving Class and Subclasses from database

I have the following Model class hierarchy: Statusowner < Contact Partner < Statusowner Freelancer < Statusowner Sales < Statusowner In fact, there are no instanciated Statusowners or ...
1
vote
1answer
36 views

STI, delegate and becomes

I have some STI setup like this: class Document < ActiveRecord::Base attr_accessible :name, description # Basic stuff omitted end class OriginalDocument < Document has_many ...
1
vote
0answers
27 views

Rails STI with devise and rolify error

I'm developing a Rails 3.2.13 app using Devise and Rolify, and I need to have 3 user types as follows: class User < ActiveRecord::Base rolify ... end class UserTypeOne < User .... end ...
3
votes
1answer
59 views

rails change path of partial collection rendering

I have an STI relationship where a conversation is composed of both messages and images. Now when I go to render them i use: <%= render conversation %> which works perfect. It finds the ...
0
votes
0answers
28 views

Creating a trigger for Rails 3 using MySQL

I'm trying to set up a Rails app to enforce data integrity on both the front end and back end (may be unnecessary, but I'm doing to project for a non-profit organization and a class, so I figured...). ...
0
votes
1answer
85 views

Rails STI build relation

I'm using STI (correctly, I promise!) for one relation of an object: class Walrus < ActiveRecord::Base has_one :bubbles end class Bubbles < ActiveRecord::Base belongs_to :walrus ...
0
votes
3answers
44 views

Rails 3 Unexpected Callback Behavior in STI model

Can't figure out why this would be happening: class Foo < ActiveRecord::Base belongs_to :belongable, :polymorphic => true def after_save if belongable.kind_of?(User) ...
1
vote
1answer
38 views

Copy model instances in Rails with single table inheritance

I have BaseProject, ProjectTemplate and Project class ProjectTemplate << BaseProject; end class Project << BaseProject; end I would like to copy project_template attributes to a new ...
0
votes
0answers
77 views

Rails: delete polymorphic STI has_many through association fails

I have a model called User which has many "taxonomies" associated through a Classification model. One of these taxonomies is a model called Topic (inheriting from Taxonomy). My model User is also ...
0
votes
1answer
45 views

How do I mass assign from a form_tag param using STI

I am using STI to create a app which has a User parent and two children Employer and Jobseeker. The relationships have been setup and tested. I want to use STI to store Employer Users and Jobseeker ...
0
votes
0answers
121 views

ElasticSearch with Tire doesn't include custom analyzer with STI model

I have an STI model which I want to be searchable with ElasticSearch and Tire. The issue I am having is when Tire creates the mappings it seems to ignore my custom analyzers for the second model. ...
0
votes
1answer
63 views

rails, SQL, Single Table Inheritance, table addressed as “subclass” not as class

I have the following setup, model Client is subclass of model Contacts. The STI table is contacts. Then in test code I get an error when calling it "should have the right clients in the right order" ...
1
vote
0answers
45 views

FactoryGirl seems not to fill out fields

I use Single Table Inheritance, where the model producer is derived from the model user, which in turn is derived from contact. Contact and User have some validation as: validates :name, ...
0
votes
0answers
20 views

Association with wrong type

I have a bit a code that behaves in a very strange way... let me explain: module A class Product < ActiveRecord::Base scope :departments, where(:more_info_type => "A::Department") end ...
0
votes
3answers
48 views

ActiveRecord won't build the right class using STI

I'm using single table inheritance in my application and running into problems building inherited users from an ancestor. For instance, with the following setup: class School < ...
0
votes
2answers
127 views

How to build ActiveRecord associations with STI

I'm having problems with AR, trying to build associations of models that inherit from others. The problem is that the associated models are being saved to the database before the call do the save ...
0
votes
2answers
169 views

Alternative to Rails Single Table Inheritance (STI)?

I have a model and table that I believe is perfectly suited to STI. My table is called Finances and has two types: Income and Expenses. Besides type there are three other columns, description, amount, ...
1
vote
2answers
104 views

rails sti and namespace duplicates model name

in my rails app i have models like this class Account < ActiveRecord::Base class Account::Bonus < Account class Account::Virtual < Account ...more And like this class DiscountSystem < ...
0
votes
0answers
83 views

issue with sti & nested_attributes & mongoid 3.0.22

I'm having a weird behavior with mongoid 3.0.22 and rails 3.1.10 Here are my classes: class A include Mongoid::Document attr_accessible :b_attributes def set_b! self.b_attributes = ...
0
votes
1answer
57 views

Rails STI: ActiveRecord PUT transaction works, but fields don't update?

I am creating an application using STI for the first time and I've stumbled onto a puzzling roadblock. Given the following two models with inheritance: User.rb class User < ActiveRecord::Base ...
0
votes
1answer
67 views

Rails STI: implementing child class edit form

There is a lot of discussion around Rails 3 STI and how to use forms, but no definitive answers on StackOverflow. I seem to have run into a similar issue and have attempted the other solutions with no ...
2
votes
2answers
127 views

Deadlocks when concurrent editing a closure tree hierarchy

How can I avoid database deadlocks when using closure_tree to concurrently manipulate a set of models with common attributes on a hierarchical structure? They present in the following flavors: When ...
0
votes
0answers
95 views

validation error on update_attributes of a subclass (STI)

I implemented a signin/out machinery as Michael Hartl suggested in his tutorial (http://ruby.railstutorial.org/chapters/sign-in-sign-out). All worked perfectly: creating, deleting, updating user from ...
0
votes
1answer
59 views

Inheritance approach: STI? MTI? or simple polymorphic asociation?

I'm implementing an app to manage prodution orders. Each order has many processes (stages), including printing and bending. All processes have some common attributes as quantity and comments, and some ...
0
votes
2answers
245 views

Rails STI (Single Table Inheritance) without an abstract class

Background I have a rails 3 app that has a model named A with the correspondent table as. Now I need a new model B that works exactly like A but has some other associations and methods (besides those ...
0
votes
2answers
155 views

Rails STI subclasses validation on update_attributes

I would like to know if there's a way to when doing STI the update_attributes, validate the attributes based on the new class type? For e.g. suppose i have: class A < ActiveRecord::Base end ...
0
votes
1answer
34 views

Query by an associated model's subclass in rails

I have used Single Table Inheritance (STI) to create some Models with subclassed from a common parent. A separate model has an association with the superclass. Eg: as follows... class Fruit < ...
0
votes
2answers
247 views

Implementing Abstract Base Model Class, the Rails Way™

I have a Book and Download model that share many attributes, so my goal is to inherit the common attributes from a DownloadableResource model. Had a look at STI, but I went the abstract base model ...
5
votes
1answer
113 views

How to combine different classes from an STI table into a single result set using ActiveRecord?

We're building an application that creates group pages similar to Facebook's group pages. Someone can post to a page and that post can have replies. Since they have very similar properties, the posts ...
0
votes
1answer
57 views

Rails: should I use STI?

I want to present my case, and know whether or not I should use STI solution. I am creating a message-board website and so far I have couple of Models: User, Topic, Post.. to make it clear: Post is ...
0
votes
1answer
105 views

How to: Single Table Inheritance in DataMapper?

I'm learning Sinatra (1.3.2) and chose to use DataMapper (1.2.0) as ORM and an in-memory SQLite (1.3.6) DB to start. Two models, Books and Downloads, are sharing most attributes, so I looked into ...
1
vote
1answer
65 views

Can a foreign key have a constant instead of a field name? Relate FK to STI subclass

Setup So here's a scenario which I'm finding is rather common once you decide to play with STI (Single Table Inheritance). You have some base type with various subtypes. Person < ...
1
vote
1answer
270 views

Rails STI - custom association in subclass

class Upload < ActiveRecord::Base has_many :comments end class Gallery < Upload has_many :images end class MusicAlbum < Upload has_many :audio_tracks end Should this work as ...
0
votes
1answer
125 views

Rails STI overriding scopes

Let's say I have a STI setup as follows: class User < ActiveRecord::Base scope :busy, -> { where('busy_factor > 1') } end class HeroUser < User scope :busy, -> { ...
0
votes
1answer
52 views

Should I split this model and table?

I would like to create simple ResumeBank app. Issue: As user I would like to add only two Resumes. Forms for this both Resumes are different with only two fields. Resumes have 12 the same ...

1 2 3 4