thombruce/activerecord-chemistry

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

Summary

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

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