mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
215 B
Ruby
9 lines
215 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# ProjectsSpace is the relation table between a Project and a Space
|
||
|
# => spaces used in a project
|
||
|
class ProjectsSpace < ApplicationRecord
|
||
|
belongs_to :space
|
||
|
belongs_to :project
|
||
|
end
|