mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
516 B
15 lines
516 B
from django.db import models
|
|
|
|
|
|
class Log(models.Model):
|
|
user = models.CharField(max_length=20, null=True)
|
|
host = models.CharField(max_length=20, null=True)
|
|
log_path = models.CharField(max_length=100)
|
|
start_time = models.DateTimeField(null=True)
|
|
pid = models.IntegerField(max_length=10)
|
|
is_finished = models.BooleanField(default=False)
|
|
log_finished = models.BooleanField(default=False)
|
|
end_time = models.DateTimeField(null=True)
|
|
|
|
def __unicode__(self):
|
|
return self.log_path |