Introduce an association between User and Event
Introduce an association between User and Event for the user schedule. As there was already a relation call users in Event the new relation is called public_users. And for the same reason the relation in Event is called public_events.
This commit is contained in:
parent
89af26bf18
commit
7f7375b7db
4 changed files with 19 additions and 0 deletions
|
|
@ -22,8 +22,11 @@ class Event < ActiveRecord::Base
|
|||
belongs_to :difficulty_level
|
||||
belongs_to :program
|
||||
|
||||
has_and_belongs_to_many :favourite_users, class_name: 'User'
|
||||
|
||||
accepts_nested_attributes_for :event_users, allow_destroy: true
|
||||
accepts_nested_attributes_for :users
|
||||
accepts_nested_attributes_for :favourite_users
|
||||
|
||||
before_create :generate_guid
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue