مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
20 أسطر
479 B
Ruby
20 أسطر
479 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
|