summaryrefslogtreecommitdiff
path: root/app/models/area_code.rb
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
commitb80bd744ad873f6fc43018bc4bfb90677de167bd (patch)
tree072c4b0e33d442528555b82c415f5e7a1712b2b0 /app/models/area_code.rb
parent3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff)
Start of GS5.
Diffstat (limited to 'app/models/area_code.rb')
-rw-r--r--app/models/area_code.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/models/area_code.rb b/app/models/area_code.rb
new file mode 100644
index 0000000..6a9d946
--- /dev/null
+++ b/app/models/area_code.rb
@@ -0,0 +1,22 @@
+class AreaCode < ActiveRecord::Base
+
+ # Associations:
+ #
+ belongs_to :country
+
+ # Validations:
+ #
+ validates_presence_of :country
+ validates_presence_of :name
+ validates_presence_of :area_code
+
+ validates_uniqueness_of :area_code, :scope => [ :country_id, :central_office_code ]
+
+
+ def to_s
+ "#{self.name} (#{self.area_code}" +
+ (self.central_office_code.blank? ? '' : "-#{self.central_office_code}") +
+ ')'
+ end
+
+end