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: pull_attached_issues
- #
- # id :integer not null, primary key
- # pull_request_id :integer
- # issue_id :integer
- # created_at :datetime not null
- # updated_at :datetime not null
- # fixed :boolean default("0")
- #
- # Indexes
- #
- # index_pull_attached_issues_on_issue_id (issue_id)
- # index_pull_attached_issues_on_pull_request_id (pull_request_id)
- #
-
- class PullAttachedIssue < ApplicationRecord
-
- belongs_to :pull_request
- belongs_to :issue
-
- end
|