Skip to content

Commit

Permalink
Remove old c4 user fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilouf committed Dec 23, 2024
1 parent 8502075 commit 1836e3d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions lemarche/users/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,16 +258,6 @@ class User(AbstractUser):
image_name = models.CharField(verbose_name="Nom de l'image", max_length=255, blank=True)
image_url = models.URLField(verbose_name="Lien vers l'image", max_length=500, blank=True)

c4_id = models.IntegerField(blank=True, null=True)
c4_phone_prefix = models.CharField(verbose_name="Indicatif international", max_length=20, blank=True)
c4_time_zone = models.CharField(verbose_name="Fuseau", max_length=150, blank=True)
c4_website = models.URLField(verbose_name="Site web", blank=True)
c4_siret = models.CharField(verbose_name="Siret ou Siren", max_length=14, blank=True)
c4_naf = models.CharField(verbose_name="Naf", max_length=5, blank=True)
c4_phone_verified = models.BooleanField(default=False)
c4_email_verified = models.BooleanField(default=False)
c4_id_card_verified = models.BooleanField(default=False)

# services data
brevo_contact_id = models.PositiveIntegerField("Brevo contact id", blank=True, null=True)

Expand Down

0 comments on commit 1836e3d

Please sign in to comment.