Include autenticazione, progetti isolati, mail marketing HTML con SMTP, test A/B e editor WYSIWYG. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
165 B
Ruby
7 lines
165 B
Ruby
class OrganizationProject < ApplicationRecord
|
|
belongs_to :organization
|
|
belongs_to :project
|
|
|
|
validates :organization_id, uniqueness: { scope: :project_id }
|
|
end
|