Created
November 19, 2010 09:07
-
-
Save gamov/706273 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
def save_batches_alloc(hash) | |
if self.attribute_names.include?('batches_alloc') | |
write_attribute(:batches_alloc, hash) | |
else | |
@batches_alloc= hash | |
end | |
end | |
def load_batches_alloc | |
if self.attribute_names.include?('batches_alloc') | |
read_attribute(:batches_alloc) | |
else | |
@batches_alloc | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment