-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(Besoins): Augmentation de la limite à 6 structures intéressé…
…es (#1171)
- Loading branch information
1 parent
6b6cf08
commit 0c57f8a
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
lemarche/tenders/migrations/0086_alter_tender_limit_nb_siae_interested.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.2.9 on 2024-04-26 09:59 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("tenders", "0085_alter_tender_external_link_alter_tendersiae_source"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="tender", | ||
name="limit_nb_siae_interested", | ||
field=models.PositiveSmallIntegerField( | ||
default=6, help_text="Champ renseigné par un ADMIN", verbose_name="Limite des SIAES intéressées" | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters