1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/app/models/events_event_theme.rb

9 lines
236 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# EventsEventTheme is the relation table between an Event and an EventTheme
# => theme associated with an Event
class EventsEventTheme < ApplicationRecord
belongs_to :event
belongs_to :event_theme
end