forgeplus/app/models/tracker.rb

17 lines
473 B
Ruby
Raw Permalink Normal View History

2020-11-23 15:35:03 +08:00
# == Schema Information
#
# Table name: trackers
#
# id :integer not null, primary key
# name :string(30) default(""), not null
# is_in_chlog :boolean default("0"), not null
# position :integer default("1")
# is_in_roadmap :boolean default("1"), not null
# fields_bits :integer default("0")
#
2020-03-09 00:40:16 +08:00
class Tracker < ApplicationRecord
has_many :issues
has_and_belongs_to_many :projects
2020-11-23 15:35:03 +08:00
end