From 52bdb704386548198e0612e61627d0b3d2590dbf Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Tue, 8 Aug 2023 14:42:09 +0500 Subject: [PATCH] chore: Adding new migrations. These are coming due to django-simple-history (#32927) --- ...er_historicalexperimentkeyvalue_options.py | 17 +++++++++++++++ ...rsistentsubsectiongradeoverride_options.py | 17 +++++++++++++++ ...istoricalinstructortaskschedule_options.py | 17 +++++++++++++++ .../migrations/0011_auto_20230807_1905.py | 21 +++++++++++++++++++ ..._alter_historicalusersocialauth_options.py | 17 +++++++++++++++ 5 files changed, 89 insertions(+) create mode 100644 lms/djangoapps/experiments/migrations/0005_alter_historicalexperimentkeyvalue_options.py create mode 100644 lms/djangoapps/grades/migrations/0020_alter_historicalpersistentsubsectiongradeoverride_options.py create mode 100644 lms/djangoapps/instructor_task/migrations/0006_alter_historicalinstructortaskschedule_options.py create mode 100644 lms/djangoapps/program_enrollments/migrations/0011_auto_20230807_1905.py create mode 100644 lms/djangoapps/support/migrations/0002_alter_historicalusersocialauth_options.py diff --git a/lms/djangoapps/experiments/migrations/0005_alter_historicalexperimentkeyvalue_options.py b/lms/djangoapps/experiments/migrations/0005_alter_historicalexperimentkeyvalue_options.py new file mode 100644 index 0000000000..07b797581d --- /dev/null +++ b/lms/djangoapps/experiments/migrations/0005_alter_historicalexperimentkeyvalue_options.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2023-08-07 19:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('experiments', '0004_historicalexperimentkeyvalue'), + ] + + operations = [ + migrations.AlterModelOptions( + name='historicalexperimentkeyvalue', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Experiment Key-Value Pair', 'verbose_name_plural': 'historical Experiment Key-Value Pairs'}, + ), + ] diff --git a/lms/djangoapps/grades/migrations/0020_alter_historicalpersistentsubsectiongradeoverride_options.py b/lms/djangoapps/grades/migrations/0020_alter_historicalpersistentsubsectiongradeoverride_options.py new file mode 100644 index 0000000000..6c6351a3f7 --- /dev/null +++ b/lms/djangoapps/grades/migrations/0020_alter_historicalpersistentsubsectiongradeoverride_options.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2023-08-07 19:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('grades', '0019_auto_20220912_0855'), + ] + + operations = [ + migrations.AlterModelOptions( + name='historicalpersistentsubsectiongradeoverride', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical persistent subsection grade override', 'verbose_name_plural': 'historical persistent subsection grade overrides'}, + ), + ] diff --git a/lms/djangoapps/instructor_task/migrations/0006_alter_historicalinstructortaskschedule_options.py b/lms/djangoapps/instructor_task/migrations/0006_alter_historicalinstructortaskschedule_options.py new file mode 100644 index 0000000000..24ce757656 --- /dev/null +++ b/lms/djangoapps/instructor_task/migrations/0006_alter_historicalinstructortaskschedule_options.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2023-08-07 19:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('instructor_task', '0005_alter_instructortaskschedule_task'), + ] + + operations = [ + migrations.AlterModelOptions( + name='historicalinstructortaskschedule', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical instructor task schedule', 'verbose_name_plural': 'historical instructor task schedules'}, + ), + ] diff --git a/lms/djangoapps/program_enrollments/migrations/0011_auto_20230807_1905.py b/lms/djangoapps/program_enrollments/migrations/0011_auto_20230807_1905.py new file mode 100644 index 0000000000..100e9bc14b --- /dev/null +++ b/lms/djangoapps/program_enrollments/migrations/0011_auto_20230807_1905.py @@ -0,0 +1,21 @@ +# Generated by Django 3.2.20 on 2023-08-07 19:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('program_enrollments', '0010_add_courseaccessroleassignment'), + ] + + operations = [ + migrations.AlterModelOptions( + name='historicalprogramcourseenrollment', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical program course enrollment', 'verbose_name_plural': 'historical program course enrollments'}, + ), + migrations.AlterModelOptions( + name='historicalprogramenrollment', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical program enrollment', 'verbose_name_plural': 'historical program enrollments'}, + ), + ] diff --git a/lms/djangoapps/support/migrations/0002_alter_historicalusersocialauth_options.py b/lms/djangoapps/support/migrations/0002_alter_historicalusersocialauth_options.py new file mode 100644 index 0000000000..8415b3d32f --- /dev/null +++ b/lms/djangoapps/support/migrations/0002_alter_historicalusersocialauth_options.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2023-08-07 19:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('support', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='historicalusersocialauth', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical user social auth', 'verbose_name_plural': 'historical user social auths'}, + ), + ]