ajuste de la estructura

This commit is contained in:
jburgos
2026-05-13 15:13:33 +00:00
parent 685b9b4b27
commit 40544fe4f2
13 changed files with 0 additions and 0 deletions

11
resumen/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"