Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #12 from fabienheureux/fix/missing-migration-file
Browse files Browse the repository at this point in the history
Add missing migration
  • Loading branch information
Ash-Crow authored Jan 11, 2023
2 parents 68bdf5d + 6ffb22d commit b92cd59
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions francedata/migrations/0005_auto_20230111_1734.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 3.2.14 on 2023-01-11 17:34

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('francedata', '0004_alter_datayear_options'),
]

operations = [
migrations.AlterModelOptions(
name='historicaldatamapping',
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical table de correspondance', 'verbose_name_plural': 'historical tables de correspondance'},
),
migrations.AlterField(
model_name='historicaldatamapping',
name='history_date',
field=models.DateTimeField(db_index=True),
),
]

0 comments on commit b92cd59

Please sign in to comment.