Delete memberships when deleting associated groups.
This commit is contained in:
parent
418a8b5806
commit
0231df9d5b
1 changed files with 4 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
# Groups organize the User.
|
||||
# A Member gets the roles from the Group
|
||||
class Group < ActiveRecord::Base
|
||||
has_many :memberships
|
||||
has_many :memberships, dependent: :destroy
|
||||
has_many :users, :through => :memberships
|
||||
|
||||
validates :name, :presence => true, :length => {:in => 1..25}
|
||||
|
@ -37,5 +37,3 @@ class Group < ActiveRecord::Base
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue