مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-11-30 21:32:30 +00:00
20 أسطر
473 B
Ruby
20 أسطر
473 B
Ruby
# == 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
|