diff options
Diffstat (limited to 'app/models/nets.rb')
-rw-r--r-- | app/models/nets.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/models/nets.rb b/app/models/nets.rb new file mode 100644 index 0000000..59f43c6 --- /dev/null +++ b/app/models/nets.rb @@ -0,0 +1,10 @@ +class Nets < ActiveRecord::Base + set_table_name "net" + belongs_to :location + belongs_to :nettype + has_many :ip + + validates_presence_of :netip, :netmask + #validates_uniqueness_of :netip + +end |