mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 20:14:15 +00:00
11 lines
295 B
Python
11 lines
295 B
Python
from django.db.models import Model, CharField, DateTimeField
|
|
|
|
|
|
class Logs(Model):
|
|
user = CharField(max_length=50)
|
|
instance = CharField(max_length=50)
|
|
message = CharField(max_length=255)
|
|
date = DateTimeField(auto_now=True)
|
|
|
|
def __unicode__(self):
|
|
return self.instance
|