1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +00:00
الملفات
postal/app/models/statistic.rb
2017-04-19 13:07:25 +01:00

18 أسطر
361 B
Ruby

# == Schema Information
#
# Table name: statistics
#
# id :integer not null, primary key
# total_messages :integer default(0)
# total_outgoing :integer default(0)
# total_incoming :integer default(0)
#
class Statistic < ApplicationRecord
def self.global
Statistic.first || Statistic.create
end
end