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_priorities
- #
- # id :integer not null, primary key
- # name :string(255)
- # position :integer
- # created_at :datetime not null
- # updated_at :datetime not null
- #
- # Indexes
- #
- # index_issue_priorities_on_name (name)
- #
-
- class IssuePriority < ApplicationRecord
- has_many :issues
- end
|