Skip to content

Commit

Permalink
improve by review
Browse files Browse the repository at this point in the history
  • Loading branch information
madjid-asa committed Dec 28, 2023
1 parent 026c86e commit 1f38388
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class Migration(migrations.Migration):
name="version",
field=models.PositiveIntegerField(default=0, verbose_name="Version"),
),
# this is migration to manage the existants stock
migrations.AlterField(
model_name="tender",
name="version",
Expand Down
2 changes: 1 addition & 1 deletion lemarche/tenders/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ class Tender(models.Model):
)
validated_at = models.DateTimeField("Date de validation", blank=True, null=True)
first_sent_at = models.DateTimeField("Date du premier envoi", blank=True, null=True)
last_sent_at = models.DateTimeField(blank=True, null=True, verbose_name="Date du dernier envoi")
last_sent_at = models.DateTimeField("Date du dernier envoi", blank=True, null=True)
# admin
notes = GenericRelation("notes.Note", related_query_name="tender")
siae_transactioned = models.BooleanField(
Expand Down

0 comments on commit 1f38388

Please sign in to comment.