From 76ec662b9093f6d25f43f44b337ce21810f964de Mon Sep 17 00:00:00 2001 From: UsamaSadiq Date: Thu, 27 Jul 2023 21:39:06 +0500 Subject: [PATCH] fix: ran makemigrations to create new migrations --- .../migrations/0025_auto_20230727_1638.py | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 edx_proctoring/migrations/0025_auto_20230727_1638.py diff --git a/edx_proctoring/migrations/0025_auto_20230727_1638.py b/edx_proctoring/migrations/0025_auto_20230727_1638.py new file mode 100644 index 00000000000..311b54b0568 --- /dev/null +++ b/edx_proctoring/migrations/0025_auto_20230727_1638.py @@ -0,0 +1,31 @@ +# Generated by Django 3.2.20 on 2023-07-27 16:38 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('edx_proctoring', '0024_delete_proctoredexamstudentattempthistory'), + ] + + operations = [ + migrations.AlterModelOptions( + name='historicalproctoredexam', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical proctored exam', 'verbose_name_plural': 'historical proctored exams'}, + ), + migrations.AlterModelOptions( + name='historicalproctoredexamstudentattempt', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical proctored exam attempt', 'verbose_name_plural': 'historical proctored exam attempts'}, + ), + migrations.AlterField( + model_name='historicalproctoredexam', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + migrations.AlterField( + model_name='historicalproctoredexamstudentattempt', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + ]