Skip to content

Commit

Permalink
Add missing historical segment migration (Flagsmith#1902)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell authored Feb 7, 2023
1 parent 25aed08 commit f8a783b
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 3.2.16 on 2023-02-06 16:08

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('segments', '0016_add_historical_records_to_segment'),
]

operations = [
migrations.AlterModelOptions(
name='historicalsegment',
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical segment', 'verbose_name_plural': 'historical segments'},
),
migrations.AlterField(
model_name='historicalsegment',
name='history_date',
field=models.DateTimeField(db_index=True),
),
]

0 comments on commit f8a783b

Please sign in to comment.