Mercurial > hg > soundsoftware-site
annotate .svn/pristine/1a/1ab06441767b89700eccb7f62767523259a141ff.svn-base @ 1479:2d7e82037daa bibplugin_cache
Close obsolete branch bibplugin_cache
author | Chris Cannam |
---|---|
date | Thu, 22 Nov 2012 15:09:58 +0000 |
parents | cbb26bc654de |
children |
rev | line source |
---|---|
Chris@909 | 1 class Company < ActiveRecord::Base |
Chris@909 | 2 attr_protected :rating |
Chris@909 | 3 set_sequence_name :companies_nonstd_seq |
Chris@909 | 4 |
Chris@909 | 5 validates_presence_of :name |
Chris@909 | 6 def validate |
Chris@909 | 7 errors.add('rating', 'rating should not be 2') if rating == 2 |
Chris@909 | 8 end |
Chris@909 | 9 end |