diff options
author | francis <francis> | 2007-08-29 12:12:44 +0000 |
---|---|---|
committer | francis <francis> | 2007-08-29 12:12:44 +0000 |
commit | fb2f5814a04dd21b8ea38609e9a654b4635bcebc (patch) | |
tree | 636f11a93b9e31e97dbd825ef877cd7b282b7c80 /app/models | |
parent | 486b7e00672624e68fdb006d683f199752b7a6cb (diff) |
Model for a public body, and basic scaffold to edit it.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/public_body.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/public_body.rb b/app/models/public_body.rb new file mode 100644 index 000000000..332468fee --- /dev/null +++ b/app/models/public_body.rb @@ -0,0 +1,4 @@ +class PublicBody < ActiveRecord::Base + validates_presence_of :request_email + +end |