otvorenesudy/otvorenesudy-api

View on GitHub
app/models/proceeding.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# == Schema Information
#
# Table name: proceedings
#
#  id          :integer          not null, primary key
#  file_number :string(255)
#  created_at  :datetime         not null
#  updated_at  :datetime         not null
#
class Proceeding < OpenCourts::ApplicationRecord
  has_many :hearings
  has_many :decrees
end