aboutsummaryrefslogtreecommitdiff
path: root/app/models/classification.rb
blob: e2b180f117162e00752f5787a655d14fc5aec097 (plain)
1
2
3
4
5
6
7
8
9
10
# SPDX-FileCopyrightText: 2020 IN COMMON Collective <collective@incommon.cc>
#
# SPDX-License-Identifier: AGPL-3.0-or-later

class Classification < ApplicationRecord
  belongs_to :resource
  belongs_to :section

  self.primary_key = :resource_id
end