summaryrefslogtreecommitdiff
path: root/app/models/oui.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/oui.rb')
-rw-r--r--app/models/oui.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/models/oui.rb b/app/models/oui.rb
new file mode 100644
index 0000000..9a5bb1f
--- /dev/null
+++ b/app/models/oui.rb
@@ -0,0 +1,17 @@
+class Oui < ActiveRecord::Base
+ attr_accessible :value
+
+ validates_presence_of :manufacturer
+ validates_presence_of :value
+
+ belongs_to :manufacturer
+
+ # State Machine stuff
+ default_scope where(:state => 'active')
+ state_machine :initial => :active do
+ end
+
+ def to_s
+ value
+ end
+end