multiple_table_inheritance icon indicating copy to clipboard operation
multiple_table_inheritance copied to clipboard

Multiple Table Inheritance is a plugin designed to allow for multiple table inheritance between your database tables and your ActiveRecord models.

Results 11 multiple_table_inheritance issues
Sort by recently updated
recently updated
newest added

The current implementation of multiple_table_inheritance breaks various Rails idioms. For example, take the following example: ``` class Employee < ActiveRecord::Base acts_as_superclass attr_reader :first_name, :last_name has_many :employees_permissions has_many :permissions, :through =>...

bug