thombruce/activerecord-chemistry

View on GitHub
lib/activerecord/chemistry/extendable.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'activerecord/chemistry/extendable/migration'
require 'activerecord/chemistry/extendable/relation'

module ActiveRecord
  module Chemistry
    module Extendable
      include ActiveRecord::Chemistry::Extendable::Migration
      include ActiveRecord::Chemistry::Extendable::Relation
    end
  end
end