Skip to content

Commit

Permalink
πŸ› Set confirmation_sent to true for old messaged in db
Browse files Browse the repository at this point in the history
  • Loading branch information
pajowu authored and stefanw committed Nov 6, 2023
1 parent ecd78a3 commit fdc39da
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ class Migration(migrations.Migration):

operations = [
migrations.AddField(
model_name="foimessage",
name="confirmation_sent",
field=models.BooleanField(verbose_name="Confirmation sent?", default=True),
preserve_default=False,
),
migrations.AlterField(
model_name="foimessage",
name="confirmation_sent",
field=models.BooleanField(default=False, verbose_name="Confirmation sent?"),
Expand Down

0 comments on commit fdc39da

Please sign in to comment.