This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git
commit 7f2859d17282cefea7cafe1d936ac76e0f5c2933 Author: Marcus Christie <[email protected]> AuthorDate: Fri Nov 18 10:00:52 2022 -0500 AIRAVATA-3562 Adding missing migration --- .../auth/migrations/0019_auto_20221118_1323.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/django_airavata/apps/auth/migrations/0019_auto_20221118_1323.py b/django_airavata/apps/auth/migrations/0019_auto_20221118_1323.py new file mode 100644 index 00000000..e98657a0 --- /dev/null +++ b/django_airavata/apps/auth/migrations/0019_auto_20221118_1323.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.15 on 2022-11-18 13:23 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_airavata_auth', '0018_merge_0014_auto_20220217_2255_0017_auto_20220616_1831'), + ] + + operations = [ + migrations.AlterField( + model_name='emailtemplate', + name='template_type', + field=models.IntegerField(choices=[(1, 'Verify Email Template'), (2, 'New User Email Template'), (3, 'Password Reset Email Template'), (4, 'User Added to Group Template'), (5, 'Verify Email Change Template'), (6, 'User Profile Completed Template')], primary_key=True, serialize=False), + ), + migrations.AlterField( + model_name='extendeduserprofilevalue', + name='user_profile', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='extended_profile_values', to='django_airavata_auth.userprofile'), + ), + ]
