Remove executed field from QueueCommand

This commit is contained in:
Daan Sprenkels
2019-03-20 10:56:44 +01:00
parent 6ae7da5797
commit 0b1dfaf020
2 changed files with 6 additions and 8 deletions

View File

@ -157,9 +157,9 @@ class QueueCommand(models.Model):
queue = models.ForeignKey(
Queue,
on_delete=models.CASCADE,
db_index=True,
)
command = models.TextField()
executed = models.BooleanField(default=False)
def __str__(self):
return self.command