inicio del repo

This commit is contained in:
jburgos
2026-05-13 13:45:56 +00:00
parent 4233c697d5
commit e51e379440
13 changed files with 323 additions and 0 deletions

11
models.py Normal file
View File

@@ -0,0 +1,11 @@
from django.db import models
from django.db.models import JSONField
class SystemRecord(models.Model):
state_details = JSONField(blank=True, null=True)
state_time = models.DateTimeField(auto_now_add=True, blank=True)
class Meta:
managed = True
db_table = "system_record"