Guest User

Untitled

a guest
Jun 25th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class Event < ActiveRecord::Base
  2. has_many :calendar_events
  3. has_many :calendars, :through => :calendar_events
  4. # ...
  5. end
  6.  
  7. class Event < ActiveRecord::Base
  8. has_many :calendar_events, :dependent => :delete_all
  9. has_many :calendars, :through => :calendar_events
  10. # ...
  11. end
Add Comment
Please, Sign In to add comment