0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-09 21:45:25 +08:00
discourse/plugins/discourse-assign/app/models/silenced_assignment.rb
2025-07-15 16:38:05 +02:00

19 lines
446 B
Ruby
Vendored

# frozen_string_literal: true
class SilencedAssignment < ActiveRecord::Base
belongs_to :assignment
end
# == Schema Information
#
# Table name: silenced_assignments
#
# id :bigint not null, primary key
# assignment_id :bigint not null
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_silenced_assignments_on_assignment_id (assignment_id) UNIQUE
#