13 lines
391 B
Python
13 lines
391 B
Python
from django.db import models
|
|
from django.utils import timezone
|
|
# Create your models here.
|
|
# MAIN RECOVERDIR PASSWORD AND CONFIG
|
|
class MainStatistic(models.Model):
|
|
staticdate = models.DateField(default=timezone.now)
|
|
agencys = models.IntegerField(default=0)
|
|
users = models.IntegerField(default=0)
|
|
standards = models.IntegerField(default=0)
|
|
chatmessages = models.IntegerField(default=0)
|
|
|
|
|