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
class BuildPropertyAssociationsOnExports < ActiveRecord::Migration | |
... | |
class Property < ActiveRecord::Base | |
attr_accessible :hierarchical | |
def enumerated? | |
if defined?(super) | |
super | |
else |
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
class RenameHierarchicalToEnumeratedInProperties < ActiveRecord::Migration | |
def change | |
rename_column(:properties, :hierarchical, :enumerated) | |
end | |
end |
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
class BuildPropertyAssociationsOnExports < ActiveRecord::Migration | |
... | |
class Property < ActiveRecord::Base | |
attr_accessible :hierarchical | |
end | |
... | |
def up |
NewerOlder