1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-25 23:55:24 +00:00
webvirtcloud/logs/models.py
2020-10-14 18:27:57 +06:00

12 lines
397 B
Python

from django.db.models import Model, CharField, DateTimeField
from django.utils.translation import gettext_lazy as _
class Logs(Model):
user = CharField(_('user'), max_length=50)
instance = CharField(_('instance'), max_length=50)
message = CharField(_('message'), max_length=255)
date = DateTimeField(_('date'), auto_now=True)
def __str__(self):
return self.instance