Skip to content

Commit

Permalink
feature: passing dict as default
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanJaeger committed Feb 11, 2025
1 parent 3a33d3b commit 8b37c03
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.1.2 on 2025-02-11 18:49

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("sectors", "0011_sector_integration_config"),
]

operations = [
migrations.AlterField(
model_name="sector",
name="integration_config",
field=models.JSONField(
blank=True,
default=dict,
null=True,
verbose_name="config to use in project integration",
),
),
]

0 comments on commit 8b37c03

Please sign in to comment.