forgeplus/app/models/issue_priority.rb

19 lines
367 B
Ruby
Raw Permalink Normal View History

2020-11-23 15:35:03 +08:00
# == 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)
#
2020-03-09 00:40:16 +08:00
class IssuePriority < ApplicationRecord
has_many :issues
2020-11-23 15:35:03 +08:00
end