forked from Gitlink/forgeplus
19 lines
367 B
Ruby
19 lines
367 B
Ruby
# == 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
|