You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # == Schema Information
- #
- # Table name: issue_assigners
- #
- # id :integer not null, primary key
- # issue_id :integer
- # assigner_id :integer
- # created_at :datetime not null
- # updated_at :datetime not null
- #
- # Indexes
- #
- # index_issue_assigners_on_assigner_id (assigner_id)
- # index_issue_assigners_on_issue_id (issue_id)
- #
-
- class IssueAssigner < ApplicationRecord
- belongs_to :issue
- belongs_to :assigner, class_name: "User"
- end
|