initial orm state models
This commit is contained in:
parent
18d9eef6ef
commit
5e492e0210
|
@ -1,3 +1,22 @@
|
|||
from django.db import models
|
||||
from django.db import models, connection
|
||||
from user.models import User, Institution
|
||||
|
||||
# Create your models here.
|
||||
|
||||
class StateDefinition(models.Model):
|
||||
institution = models.ForeignKey(Institution, on_delete=models.CASCADE)
|
||||
order = models.PositiveIntegerField()
|
||||
state = models.CharField(max_length=255)
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.institution.name} - {self.state}"
|
||||
|
||||
class State(models.Model):
|
||||
date = models.DateTimeField(auto_now_add=True)
|
||||
institution = models.ForeignKey(Institution, on_delete=models.CASCADE)
|
||||
user = models.ForeignKey(User, on_delete=models.SET_NULL, null=True)
|
||||
|
||||
state = models.CharField(max_length=255)
|
||||
snapshot_uuid = models.UUIDField()
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.institution.name} - {self.state} - {self.snapshot_uuid}"
|
||||
|
|
Loading…
Reference in a new issue