You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classSuper < ApplicationRecord# does not workself.table_name_prefix='super_'# work# self.table_name = 'super_users'endclassUser < Super# does not work# self.table_name_prefix = 'super_'# work# self.table_name = 'super_users'end# class User < ApplicationRecord# work# self.table_name_prefix = 'super_'# end
command
$ bundle exec annotate app/models/user.rb
Model files unchanged.