File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# frozen_string_literal: true
2+
3+ # == Schema Information
4+ #
5+ # Table name: org_domains
6+ #
7+ # id :bigint(8) not null, primary key
8+ # domain :text not null
9+ # created_at :datetime not null
10+ # updated_at :datetime not null
11+ # org_id :bigint(8) not null
12+ #
13+ # Indexes
14+ #
15+ # index_org_domains_on_org_id (org_id)
16+ #
17+ # Foreign Keys
18+ #
19+ # fk_rails_... (org_id => orgs.id)
20+ #
221class OrgDomain < ApplicationRecord
322 belongs_to :org
423
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
12
2-
3+ # == Schema Information
4+ #
5+ # Table name: org_rors
6+ #
7+ # id :bigint(8) not null, primary key
8+ # created_at :datetime not null
9+ # updated_at :datetime not null
10+ # org_id :bigint(8) not null
11+ # ror_id :text not null
12+ #
13+ # Indexes
14+ #
15+ # index_org_rors_on_org_id (org_id)
16+ #
17+ # Foreign Keys
18+ #
19+ # fk_rails_... (org_id => orgs.id)
20+ #
321class OrgRor < ApplicationRecord
422 belongs_to :org
523
You can’t perform that action at this time.
0 commit comments