Skip to content

Commit

Permalink
Merge pull request #181 from boxine/missing-migration
Browse files Browse the repository at this point in the history
add missing migration
  • Loading branch information
flbraun authored Nov 26, 2024
2 parents 1f9f1e6 + 54cebf3 commit 48d93ac
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bx_django_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '83'
__version__ = '84'
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Django 5.1.2 on 2024-11-26 15:07

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("feature_flags", "0001_initial"),
]

operations = [
migrations.AlterField(
model_name="featureflagmodel",
name="cache_key",
field=models.CharField(
help_text="FeatureFlagModel.cache_key.help_text",
max_length=255,
primary_key=True,
serialize=False,
verbose_name="FeatureFlagModel.cache_key.verbose_name",
),
),
]

0 comments on commit 48d93ac

Please sign in to comment.