diff --git a/license_manager/apps/subscriptions/migrations/0061_auto_20230927_1110.py b/license_manager/apps/subscriptions/migrations/0061_auto_20230927_1110.py new file mode 100644 index 00000000..0a209ad7 --- /dev/null +++ b/license_manager/apps/subscriptions/migrations/0061_auto_20230927_1110.py @@ -0,0 +1,76 @@ +# Generated by Django 3.2.21 on 2023-09-27 11:10 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('subscriptions', '0060_historicalsubscriptionlicensesource'), + ] + + operations = [ + migrations.AlterModelOptions( + name='historicalcustomeragreement', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Customer Agreement', 'verbose_name_plural': 'historical Customer Agreements'}, + ), + migrations.AlterModelOptions( + name='historicallicense', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical license', 'verbose_name_plural': 'historical licenses'}, + ), + migrations.AlterModelOptions( + name='historicalnotification', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical notification', 'verbose_name_plural': 'historical notifications'}, + ), + migrations.AlterModelOptions( + name='historicalproduct', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical product', 'verbose_name_plural': 'historical products'}, + ), + migrations.AlterModelOptions( + name='historicalsubscriptionlicensesource', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical subscription license source', 'verbose_name_plural': 'historical subscription license sources'}, + ), + migrations.AlterModelOptions( + name='historicalsubscriptionplan', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Subscription Plan', 'verbose_name_plural': 'historical Subscription Plans'}, + ), + migrations.AlterModelOptions( + name='historicalsubscriptionplanrenewal', + options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Subscription Plan Renewal', 'verbose_name_plural': 'historical Subscription Plan Renewals'}, + ), + migrations.AlterField( + model_name='historicalcustomeragreement', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + migrations.AlterField( + model_name='historicallicense', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + migrations.AlterField( + model_name='historicalnotification', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + migrations.AlterField( + model_name='historicalproduct', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + migrations.AlterField( + model_name='historicalsubscriptionlicensesource', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + migrations.AlterField( + model_name='historicalsubscriptionplan', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + migrations.AlterField( + model_name='historicalsubscriptionplanrenewal', + name='history_date', + field=models.DateTimeField(db_index=True), + ), + ]