You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastodon/app/models/collection_report.rb

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