Created
December 10, 2010 03:40
-
-
Save dgalarza/735730 to your computer and use it in GitHub Desktop.
Mongodb Model Inheritance is win
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Base class that all WoW Armory based resources will inherit from | |
class ArmoryModel | |
include Mongoid::Document | |
field :last_armory_update, :type => Date | |
end | |
class UserCharacter < ArmoryModel | |
end | |
class TalentSpec < ArmoryModel | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment