Module: ActiveVersion::Adapters::ActiveRecord::Base
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/active_version/adapters/active_record/base.rb
Overview
Base adapter for ActiveRecord integration
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#column_names ⇒ Object
Instance method to get column names (delegates to class method) This provides compatibility with ActiveRecord’s class method as an instance method.
Instance Method Details
#column_names ⇒ Object
Instance method to get column names (delegates to class method) This provides compatibility with ActiveRecord’s class method as an instance method
14 15 16 |
# File 'lib/active_version/adapters/active_record/base.rb', line 14 def column_names self.class.column_names end |