diff --git a/app/models/classification_counts/hourly_workflow_classification_count.rb b/app/models/classification_counts/hourly_workflow_classification_count.rb index 53ec7e4..04cd787 100644 --- a/app/models/classification_counts/hourly_workflow_classification_count.rb +++ b/app/models/classification_counts/hourly_workflow_classification_count.rb @@ -1,12 +1,12 @@ # frozen_string_literal: true module ClassificationCounts - class HourlyWorkflowClassificationCount < ApplicationRecord - self.table_name = 'hourly_classification_count_per_workflow' - attribute :classification_count, :integer + class HourlyWorkflowClassificationCount < ApplicationRecord + self.table_name = 'hourly_classification_count_per_workflow' + attribute :classification_count, :integer - def readonly? - true - end + def readonly? + true end end +end