mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
15 lines
302 B
Ruby
15 lines
302 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: ignores
|
|
#
|
|
# id :integer not null, primary key
|
|
# name :string(255)
|
|
# content :text(65535)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class Ignore < ApplicationRecord
|
|
include Projectable
|
|
end
|