I am trying to create a Active Record tableless Model. My user.rb looks like this
class User < ActiveRecord::Base class_inheritable_accessor :columns
Just remove:
class_inheritable_accessor :columns
And it should work, even with associations just like a model with a table.