activerecord-tableless
activerecord-tableless copied to clipboard
Bringing together the different tableless model implementations into a single gem/plugin
Hi I am facing an issue when I try to upgrade to rails 6.Is there any plan to support rails 6 version?
Any chance we could merge all updates re: Rails 4.2 and make it work with Rails 5? Check my response (latest) to this SO thread: http://stackoverflow.com/questions/7275496/tableless-model-in-rails-3-1/39440075#39440075 To make that solution...
Greetings. Currently I'm trying to initialize object through `has_one` association like this: ``` ruby class Report < ActiveRecord::Base has_no_table belongs_to :reportable, polymorphic: true column :reportable_id, :integer column :reportable_type, :string column...
When trying to access a table-less model through an association, it was throwing a 'NoMethodError: undefined method `sanitize_limit' for #Object:...". Fixed the error by defining that method on the "connection"...
Hi, I am trying to use associations with table-less models. I do not find how to use associations in github documentation nor I am able to find any tutorial regarding...
Newbie to Ruby on Rails + Heroku Deployment .. not sure if this is issue is related to Active record - tableless Gem or with Heroku deployment environment. Works fine...
Hi, I am the author of the cocoon gem, and received a request to be able to create nested forms with ActiveModel models. This gems seems like the perfect answer...
Hi, In my application (Rails 4), the User model is not stored in the 'local' database but is on a backoffice application. So, I use a tableless model and I...
In Rails 3.2.13 I'm experiencing problems when trying to use tableless models as one side of a has_many_through relationship ``` class List < ActiveRecord::Base # persisted model has_many :memberships has_many...