مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
22 أسطر
504 B
Ruby
22 أسطر
504 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: organization_users
|
|
#
|
|
# id :integer not null, primary key
|
|
# organization_id :integer
|
|
# user_id :integer
|
|
# created_at :datetime
|
|
# admin :boolean default(FALSE)
|
|
# all_servers :boolean default(TRUE)
|
|
# user_type :string(255)
|
|
#
|
|
|
|
class OrganizationUser < ApplicationRecord
|
|
|
|
belongs_to :organization
|
|
belongs_to :user, polymorphic: true, optional: true
|
|
|
|
end
|