Skip to content

Commit

Permalink
Merge 2 migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Dec 19, 2023
1 parent 610a42f commit 58fd1d4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 24 deletions.
10 changes: 10 additions & 0 deletions lemarche/conversations/migrations/0012_templatetransactional.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,16 @@ class Migration(migrations.Migration):
verbose_name="Identifiant Brevo",
),
),
("is_active", models.BooleanField(default=False, verbose_name="Actif")),
(
"source",
models.CharField(
blank=True,
choices=[("MAILJET", "Mailjet"), ("BREVO", "Brevo")],
max_length=20,
verbose_name="Source",
),
),
(
"created_at",
models.DateTimeField(default=django.utils.timezone.now, verbose_name="Date de création"),
Expand Down

This file was deleted.

0 comments on commit 58fd1d4

Please sign in to comment.