Skip to content

Commit

Permalink
migration to update verbose name
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienReuiller committed Nov 27, 2024
1 parent 83197d2 commit feacc72
Showing 1 changed file with 22 additions and 0 deletions.
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"),
),
]

0 comments on commit feacc72

Please sign in to comment.