Last active
August 29, 2015 14:04
-
-
Save braidn/d0603a1242729f15eea4 to your computer and use it in GitHub Desktop.
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
module RCMS | |
class Asset < ActiveRecord::Base | |
self.table_name = 'rcms_assets' | |
self.inheritance_column = :_type_disabled | |
end | |
end | |
#does not work (has column name 'type') |
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
module RCMS | |
class Link < ActiveRecord::Base | |
self.table_name = 'rcms_links' | |
end | |
end | |
#does work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment