borg-web/borgweb/borg/models/cache.py
2021-05-07 19:57:08 +01:00

11 lines
307 B
Python

from django.db import models
class Cache(models.Model):
total_chunks = models.IntegerField()
total_csize = models.IntegerField()
total_size = models.IntegerField()
total_unique_chunks = models.IntegerField()
unique_csize = models.IntegerField()
unique_size = models.IntegerField()