aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/organisation.rb
blob: f4b2e35f8742da33c1c16b059f34c0bcefeea87f (plain)
1
2
3
4
5
6
7
# -*- coding: utf-8 -*-
class Organisation < ActiveRecord::Base
  has_many :users, :dependent => :destroy
  has_many :referentials, :dependent => :destroy

  validates :name, :presence => true, :uniqueness => true
end