Files
mastodon/app/models/collection_report.rb
2026-02-13 11:11:44 +00:00

17 lines
420 B
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: collection_reports
#
# id :bigint(8) not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
# collection_id :bigint(8) not null
# report_id :bigint(8) not null
#
class CollectionReport < ApplicationRecord
belongs_to :collection
belongs_to :report
end