Skip to content

Commit

Permalink
fix: ran makemigrations to create new migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
UsamaSadiq committed Jul 27, 2023
1 parent 2c94e18 commit 76ec662
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions edx_proctoring/migrations/0025_auto_20230727_1638.py
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit 76ec662

Please sign in to comment.