From 789b5553eac5bbb77aa9695dcd18ce214cb41819 Mon Sep 17 00:00:00 2001 From: yuenmichelle1 Date: Mon, 7 Oct 2024 23:37:40 -0500 Subject: [PATCH] Update hourly_workflow_classification_count.rb --- .../hourly_workflow_classification_count.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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