Fixes #1622 - split the api into 4 apps: core, history, schedule, storage - exploded the settings into testing/prod
11 lines
277 B
Python
11 lines
277 B
Python
from django.db import models
|
|
|
|
|
|
class LiveLog(models.Model):
|
|
state = models.CharField(max_length=32)
|
|
start_time = models.DateTimeField()
|
|
end_time = models.DateTimeField(blank=True, null=True)
|
|
|
|
class Meta:
|
|
managed = False
|
|
db_table = "cc_live_log"
|