mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
7868f31a58
for: machines, spaces, trainings, events
9 lines
236 B
Ruby
9 lines
236 B
Ruby
# 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
|