9 lines
197 B
Python
9 lines
197 B
Python
# Copyright The IETF Trust 2015, All Rights Reserved
|
|
|
|
from django.db import models
|
|
|
|
class DumpInfo(models.Model):
|
|
date = models.DateTimeField()
|
|
host = models.CharField(max_length=128)
|
|
|