add region/bbox/area to event table

This commit is contained in:
Blake Blackshear
2021-09-23 07:31:48 -05:00
parent 1049673413
commit 1d25936f31
5 changed files with 54 additions and 2 deletions

View File

@@ -15,6 +15,9 @@ class Event(Model):
thumbnail = TextField()
has_clip = BooleanField(default=True)
has_snapshot = BooleanField(default=True)
region = JSONField()
box = JSONField()
area = IntegerField
class Recordings(Model):