forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Object Mapper (ORM : ODM) ActiveRecord, Mongoid and co.
Timo Schilling edited this page Nov 1, 2014
·
1 revision
There are two kinds of Object Mappers:
- Object Relation Mappers (ORM) for relational databases like PostgreSQL or MySQL, the famous one being ActiveRecord.
- Object Document Mappers (ODM) for document based databases like MongoDB with Mongoid
At the moment ActiveAdmin fully supports ActiveRecord, and the team is working an supporting Mongoid as well.
ActiveAdmin should work well with all Object Mappers wich are ActiveModel based or supports this api.
If you want to implement support for a new Object Mapper, take a look at the currently supported Object Mapper. We are happy to get pull requests for new Object Mappers.