mirror of
https://github.com/mastodon/mastodon.git
synced 2026-04-25 07:56:08 -05:00
17 lines
420 B
Ruby
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
|