-
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(Structures): gérer le numéro de téléphone de contact avec une li…
…brairie dédiée (#1221)
- Loading branch information
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
lemarche/siaes/migrations/0074_alter_siae_contact_phone_and_more.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,27 @@ | ||
# Generated by Django 4.2.13 on 2024-05-17 15:20 | ||
|
||
import phonenumber_field.modelfields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("siaes", "0073_siae_brevo_company_id"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="siae", | ||
name="contact_phone", | ||
field=phonenumber_field.modelfields.PhoneNumberField( | ||
blank=True, max_length=150, region=None, verbose_name="Téléphone" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="siaegroup", | ||
name="contact_phone", | ||
field=phonenumber_field.modelfields.PhoneNumberField( | ||
blank=True, max_length=150, region=None, verbose_name="Téléphone" | ||
), | ||
), | ||
] |
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