Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
1k views

Best practices to handle routes for STI subclasses in rails

My Rails views and controllers are littered with redirect_to, link_to, and form_for method calls. Sometimes link_to and redirect_to are explicit in the paths they're linking (e.g. link_to 'New ...
7
votes
2answers
418 views

single table inheritance with embeds_one mogoid

I have a model class Post include Mongoid::Document include Mongoid::Timestamps embeds_one :comment end and I have comment class class Comment include Mongoid::Document include ...
6
votes
2answers
2k views

Rails STI using ONE form

I have a form that allows me to add files of different formats to a stream. So, a stream is made up of many files, these files are XML files but basically have different schemas. I have one form that ...
6
votes
4answers
3k views

Multiple Table Inheritance vs. Single Table Inheritance in Ruby on Rails

I have been struggling for the past few hours thinking about which route I should go. I have a Notification model. Up until now I have used a notification_type column to manage the types but I think ...
6
votes
5answers
2k views

Single Table Inheritance in Django

Is there explicit support for Single Table Inheritance in Django? Last I heard, the feature was still under development and debate. Are there libraries/hacks I can use in the meantime to capture the ...
5
votes
1answer
275 views

Doctrine 1.2 class table inheritance workaround?

ok, first of all, I know this is not possible with 1.2., that is why I'm looking for a workaround. And no, unfortunately I can't use Doctrine 2, because my shared hosting server is stuck at PHP ...
5
votes
1answer
688 views

Single Controller, multiple (inherited) classes (rails 3)

I have a base class inherited by 2 others via Single Table Inheritance. I want all subclasses to share the same controller/views for various reasons-the only real difference is in the model's ...
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 ...
5
votes
3answers
615 views

Can nested attributes be used in combination with inheritance?

I have the following classes: Project Person Person > Developer Person > Manager In the Project model I have added the following statements: has_and_belongs_to_many :people ...
4
votes
1answer
391 views

How to manage Single Table Inheritance within Doctrine 2?

I have comments & articles, both are "votable". So, basically I've three entities, Article, Comment and Vote. After some reading on Single Table Inheritance in Doctrine 2 reference manual, it ...
4
votes
1answer
338 views

Handling forms with Single Table Inheritance

I have a form in my Profile edit view beginning with this line: <% form_for @profile, :html => { :multipart => true } do |f| %> Profile undergoes Single Table Inheritance and the two ...
4
votes
2answers
227 views

Ruby On Rails Hierarchical Relationship Modeling

I have a base table called users which holds all common information about a user such as name, address, phone number...etc I have another table called clients which holds specific information about a ...
4
votes
4answers
588 views

Rails object inheritence with belongs_to

I have a simple has_many/belongs_to relationship between Report and Chart. The issue I'm having is that my Chart model is a parent that has children. So in my Report model I have class Report < ...
4
votes
4answers
462 views

STI and polymorphs

I have problem with my code class Post < ActiveRecord::Base end class NewsArticle < Post has_many :comments, :as => :commentable, :dependent => :destroy, :order => 'created_at' end ...
4
votes
2answers
181 views

Creating “feeds” from multiple, different Rails models

I'm working on an application that has a few different models (tickets, posts, reports, etc..). The data is different in each model and I want to create a "feed" from all those models that displays ...
4
votes
3answers
2k views

has_many and single table inheritance

I have a has_many relationship between two entities, Feeds and Posts. I also have specific types of posts, Videos and Photos. This is structured in the database using single table inheritance. Right ...
4
votes
3answers
4k views

How can I disable a validation and callbacks in a rails STI derived model?

Given a model class BaseModel < ActiveRecord::Base validates_presence_of :parent_id before_save :frobnicate_widgets end and a derived model (the underlying database table has a type field - ...
3
votes
1answer
35 views

Pros and cons of Single Table Inheritance for Assets in Rails

I'm looking at file upload gems and there seems to be a tendency to put all assets in single "Assets" table and using STI to subclass them. Like ImageAsset, VideoAsset, AudioAsset, etc. I'm new to ...
3
votes
1answer
99 views

Doctrine2 - Single Table Inheritance

I'm trying to apply this tutorial to my project, but I don't get it working. Everytime I try to update my schema i get an error: Fatal error: Cannot redeclare class Rueckgrat\App\Models\ProjectSetting ...
3
votes
1answer
292 views

Rails: Structuring a query involving a polymorphic association and STI

I'm trying to find the 10 most recent comments on photos so I can integrate them into an activity feed on my Rails 3.0.3 application. I've got a Photo model, which inherits from an Upload model using ...
3
votes
1answer
498 views

Doctrine ORM Single Table Inheritance association problem (always Eager loading contrary to documentation))

I have an issue with single table inheritance and I'm not sure if I'm interpreting the documentation correctly. First: I've not copied my code / entity mappings verbosely (or even using the correct ...
3
votes
2answers
405 views

Broken Rails Routes after implementing Single Table Inheritance

I have implemented single table inheritance for a person class class Person < ActiveRecord::Base end class Teacher < Person end class Student < Person end class Outsider < Person ...
3
votes
1answer
228 views

counter_cache in single table inheritance

I am wondering if the counter_cache would work in single table inheritance. For these models: class User has_many :questions end class Question belongs_to :user, :counter_cache => true end ...
3
votes
1answer
397 views

ActiveRecord Validations for Models with has_many, belongs_to associations and STI

I have four models: User Award Badge GameWeek The associations are as follows: User has many awards. Award belongs to user. Badge has many awards. Award belongs to badge. User has many ...
3
votes
2answers
693 views

Rails single table inheritance/subclass find condition in parent

I have a table called Users (class User < ActiveRecord::Base) and a subclass/STI of it for Clients (class Client < User). Client "filtering" works as expected, in other words Client.find(:all) ...
3
votes
1answer
642 views

has_many with multi-level hierarchy and single table inheritance

In my Rails app I have a multi-level hierarchy of the following kind: class Vehicle < ActiveRecord::Base end class RoadVehicle < Vehicle end class Car < RoadVehicle end class Buss < ...
3
votes
3answers
2k views

Ruby on Rails Single Table Inheritance (STI) and unit test problem (with PostgreSQL)

I'm using an STI model with a single "Accounts" table to hold information for Users and Technicians (i.e. User < Account, Technician < Account). Everything works from a functional perspective, ...
2
votes
2answers
33 views

Convert model in rails (Single Table Inheritance)

Let's say I have two types of users, A and B. Users of type B have fewer privileges and less-strict validations on fields (more can be blank). Otherwise, they're basically the same as type A. This ...
2
votes
1answer
35 views

Best ActiveRecord inheritance strategy for abstract class and subclass

trying to figure out the best ActiveRecord inheritance strategy for this particular problem: I have an abstract class, let's call it Message with the following methods/attributes. Message |- ...
2
votes
2answers
82 views

Can I remove the discriminator column in a Hibernate single table inheritance?

We use single table inheritance for every table in our application. This allows different instances of the same application stack to work with the same DAOs while their entities might differ slightly ...
2
votes
1answer
106 views

Getting right row while using inheritance of tables in PostgreSQL

I'm recently trying to drop Doctrine due to performance and problems with abstraction and move to database driven logic. I'm using mostly PostgreSQL. Doctrine One thing that I liked about ...
2
votes
1answer
189 views

Single Table Inheritance with Formtastic

So I have two models that inherit from another as follows: class OneTime < Step has_one :due_date accepts_nested_attributes_for :due_date end class Repeatable < Step has_many :due_dates ...
2
votes
1answer
295 views

Bug with Single Table Inheritance (STI) and has_and_belongs_to_many (HABTM) associations

Using Rails 3.0.7, and have the following 4 models: class User < ActiveRecord::Base end class Administrator < User has_and_belongs_to_many :clients end class Client < ActiveRecord::Base ...
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
711 views

Hibernate: org.hibernate.WrongClassException, SINGLE_TABLE inheritance and DiscriminatorFormula

I'm using Hibernate 3.2.2 GA with HSQLDB 2.0 GA, and I have a class hierarchy similar to the following: @Entity @Table(name = "A_TABLE") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) ...
2
votes
2answers
656 views

Rails devise registration form when having STI

I dont know how to create a worker and a association. So i am able to link those together. I have a type colulm in user. This is my form(http://localhost:3000/workers/sign_up): <h2>Create ...
2
votes
3answers
533 views

How to make Rails 3 reload STI classes in development mode?

After switching to Rails 3, I noticed that I have to reboot my server to make STI model classes reload with each request. For example, suppose I have this: # app/models/vehicle.rb class Vehicle < ...
2
votes
2answers
348 views

Rails: cannot load fixtures for table using STI (undefined method `reflect_on_all_associations')

I can't load fixtures for my table that uses STI. When I call FIXTURES=schools rake db:fixtures:load, I get this error: undefined method `reflect_on_all_associations' for Object:Class Other ...
2
votes
1answer
117 views

rails redirect to the template of superclass if template is missing for some subclass

I am using Single-Table-Inheritance for a rails project. And I was wondering if it were possible to share functionality for some common functions between subclasses by implementing them in the ...
2
votes
1answer
264 views

Making a single create form using Single Table Inheritance in Rails

I'm using STI in Rails, and I've got a Vehicle object, that has many different types of subclasses, like Car, Truck, etc. It's for a simple app, so STI works fine in this case, but I'm having trouble ...
2
votes
1answer
188 views

Rails Single Table Inheritance using Foreign Key (ID)

I have to model an association structure and the association is divided into divisions/subdivisions/sections etc. So I've created a simple Entity-Attribute Model: I'd like to use rail's ...
2
votes
3answers
5k views

Hibernate: Parent/Child relationship in a single-table

I hardly see any pointer on the following problem related to Hibernate. This pertains to implementing inheritance using a single database table with a parent-child relationship to itself. For example: ...
2
votes
1answer
634 views

Rails Single Table Inheritance with HABTM Fixture in unit testing returning NoMethodError: undefined method `singularize'

Imagine a model structure as follows: models/cross_sell_promotion.rb class CrossSellPromotion < Promotion has_and_belongs_to_many :afflicted_products, :join_table => ...
2
votes
2answers
2k views

Spring: controller inheritance using @Controller annotation

I'd like to be able to create a base controller in my Spring app that, among other things, determines if a user is a registered user or not. This base controller, following the template design ...
2
votes
2answers
534 views

Propel Single Table Inheritance Issue

I have a table called "talk", which is defined as abstract in my schema.xml file. It generates 4 objects (1 per classkey): Comment, Rating, Review, Checkin It also generates TalkPeer, but I couldn't ...
2
votes
0answers
334 views

Use both Class Table and Single Table inheritance in Castle Activerecord?

In Castle Activerecord (on top of NHibernate), is it possible to use class table inheritance globally, and single table inheritance on part of the inheritance tree? I would like to do something like ...
2
votes
5answers
3k views

Rails attr_accessible does not work for :type?

Im trying set the single table inheritance model type in a form. So i have a select menu for attribute :type and the values are the names of the STI subclasses. The problem is the error log keeps ...
2
votes
2answers
1k views

Polymorphism or Inheritance in JSON with Java and Ruby

For context, we are storing most of our data as JSON strings. This works very well with Hadoop on the backend and is easy to handle in Ruby on the front end. My data types fit the natural pattern for ...
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
3answers
50 views

What are the merits of using STI vs Category?

This comes from the Rails world, but is a pretty generic question about Single Table Inheritance. They only reason I'm asking this is that people keep pushing STI on me when there is no obvious reason ...

1 2 3 4