Sha256: b1c407aedcdfdebf97571546ae33214059604fd8a6377c939b09a3e90995963b
Contents?: true
Size: 383 Bytes
Versions: 13
Compression:
Stored size: 383 Bytes
Contents
# frozen_string_literal: true module GroupMetrics # Tabulate count of OnTheMindStatements within a study week for a Group. class WeeklyOnTheMindStatementsCount < WeeklyCount self.table_name = "social_networking_on_the_mind_statements" def self.fetch(group_id) return {} unless ActiveRecord::Base.connection.table_exists?(table_name) super end end end
Version data entries
13 entries across 13 versions & 1 rubygems