add drap in vehicle

This commit is contained in:
2025-01-24 01:08:01 +01:00
parent 6a1bfd5c8a
commit de757fd152
2 changed files with 3 additions and 2 deletions

View File

@@ -38,6 +38,7 @@ class Vehicles(models.Model):
nStatus = models.CharField('Statut', max_length=1, choices=STATUS_CHOICES, default=1)
nType = models.CharField('Type', max_length=1, choices=VHC_CHOICES, default=1)
bLucas = models.BooleanField("Lucas", default=0)
bDrap = models.BooleanField("Drap HRC", default=0)
nOrder = models.IntegerField("Ordre", default=0)
nTeam = models.CharField('Équipe', max_length=1, choices=TEAM_NUMBER, default=1)