مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-11-30 21:32:30 +00:00
20 أسطر
392 B
Ruby
20 أسطر
392 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: statistics
|
|
#
|
|
# id :integer not null, primary key
|
|
# total_incoming :bigint default(0)
|
|
# total_messages :bigint default(0)
|
|
# total_outgoing :bigint default(0)
|
|
#
|
|
|
|
class Statistic < ApplicationRecord
|
|
|
|
def self.global
|
|
Statistic.first || Statistic.create
|
|
end
|
|
|
|
end
|