-
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.
feat(Siae): Permettre aux structures de changer leur nom commercial (#…
- Loading branch information
1 parent
57406a9
commit 9c32349
Showing
10 changed files
with
687 additions
and
246 deletions.
There are no files selected for viewing
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
22 changes: 22 additions & 0 deletions
22
lemarche/siaes/migrations/0078_alter_historicalsiae_brand_alter_siae_brand.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,22 @@ | ||
# Generated by Django 4.2.15 on 2024-11-27 16:41 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("siaes", "0077_remove_siaeactivity_location_siaeactivity_locations_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalsiae", | ||
name="brand", | ||
field=models.CharField(blank=True, max_length=255, verbose_name="Nom commercial"), | ||
), | ||
migrations.AlterField( | ||
model_name="siae", | ||
name="brand", | ||
field=models.CharField(blank=True, max_length=255, verbose_name="Nom commercial"), | ||
), | ||
] |
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
Oops, something went wrong.