statuses_per_account_count.rb 430 B

123456789101112131415
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: annual_report_statuses_per_account_counts
  5. #
  6. # id :bigint(8) not null, primary key
  7. # year :integer not null
  8. # account_id :bigint(8) not null
  9. # statuses_count :bigint(8) not null
  10. #
  11. class AnnualReport::StatusesPerAccountCount < ApplicationRecord
  12. # This table facilitates percentile calculations
  13. end