diff --git a/hypha/apply/funds/migrations/0073_reminder.py b/hypha/apply/funds/migrations/0073_reminder.py index f782632c0389d74572ca21d5a16d18cdb5a27f0b..80b18745598701ee73a2dc99144a50f90fb444d9 100644 --- a/hypha/apply/funds/migrations/0073_reminder.py +++ b/hypha/apply/funds/migrations/0073_reminder.py @@ -1,4 +1,4 @@ -# Generated by Django 2.2.11 on 2020-03-10 02:06 +# Generated by Django 2.2.11 on 2020-03-19 10:24 from django.conf import settings from django.db import migrations, models @@ -18,10 +18,14 @@ class Migration(migrations.Migration): fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('time', models.DateTimeField()), - ('action', models.CharField(choices=[('review', 'Remind to Review')], default='review', max_length=15)), + ('action', models.CharField(choices=[('reviewers_review', 'Remind reviewers to Review')], max_length=50)), + ('medium', models.CharField(choices=[('email', 'Email')], default='email', max_length=15)), ('sent', models.BooleanField(default=False)), ('submission', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='reminders', to='funds.ApplicationSubmission')), ('user', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to=settings.AUTH_USER_MODEL)), ], + options={ + 'ordering': ['-time'], + }, ), ] diff --git a/hypha/apply/funds/migrations/0074_auto_20200310_1121.py b/hypha/apply/funds/migrations/0074_auto_20200310_1121.py deleted file mode 100644 index fb435408db616055e9dcda7cb5aadb2d374126e1..0000000000000000000000000000000000000000 --- a/hypha/apply/funds/migrations/0074_auto_20200310_1121.py +++ /dev/null @@ -1,22 +0,0 @@ -# Generated by Django 2.2.11 on 2020-03-10 11:21 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('funds', '0073_reminder'), - ] - - operations = [ - migrations.AlterModelOptions( - name='reminder', - options={'ordering': ['-time']}, - ), - migrations.AddField( - model_name='reminder', - name='medium', - field=models.CharField(choices=[('slack', 'slack'), ('email', 'email')], default='email', max_length=15), - ), - ] diff --git a/hypha/apply/funds/migrations/0075_auto_20200310_1127.py b/hypha/apply/funds/migrations/0075_auto_20200310_1127.py deleted file mode 100644 index b153a33bc7972602fd2b38c922bd9e20efbb65e8..0000000000000000000000000000000000000000 --- a/hypha/apply/funds/migrations/0075_auto_20200310_1127.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.11 on 2020-03-10 11:27 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('funds', '0074_auto_20200310_1121'), - ] - - operations = [ - migrations.AlterField( - model_name='reminder', - name='medium', - field=models.CharField(choices=[('slack', 'Slack'), ('email', 'Email')], default='email', max_length=15), - ), - ] diff --git a/hypha/apply/funds/migrations/0076_auto_20200316_1102.py b/hypha/apply/funds/migrations/0076_auto_20200316_1102.py deleted file mode 100644 index aa02d63afb62dd9b7bfacf31605744778f82d2d4..0000000000000000000000000000000000000000 --- a/hypha/apply/funds/migrations/0076_auto_20200316_1102.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.11 on 2020-03-16 11:02 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('funds', '0075_auto_20200310_1127'), - ] - - operations = [ - migrations.AlterField( - model_name='reminder', - name='medium', - field=models.CharField(choices=[('email', 'Email')], default='email', max_length=15), - ), - ] diff --git a/hypha/apply/funds/migrations/0077_auto_20200316_1117.py b/hypha/apply/funds/migrations/0077_auto_20200316_1117.py deleted file mode 100644 index 12eb93129e6e06bfbdbfc45bc705809e98fb2654..0000000000000000000000000000000000000000 --- a/hypha/apply/funds/migrations/0077_auto_20200316_1117.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.11 on 2020-03-16 11:17 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('funds', '0076_auto_20200316_1102'), - ] - - operations = [ - migrations.AlterField( - model_name='reminder', - name='action', - field=models.CharField(choices=[('reviewers_review', 'Remind reviewers to Review')], default='review', max_length=15), - ), - ] diff --git a/hypha/apply/funds/migrations/0078_auto_20200316_1131.py b/hypha/apply/funds/migrations/0078_auto_20200316_1131.py deleted file mode 100644 index 38f88f8592a6d32b4c59048322053a28ceb8c273..0000000000000000000000000000000000000000 --- a/hypha/apply/funds/migrations/0078_auto_20200316_1131.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.11 on 2020-03-16 11:31 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('funds', '0077_auto_20200316_1117'), - ] - - operations = [ - migrations.AlterField( - model_name='reminder', - name='action', - field=models.CharField(choices=[('reviewers_review', 'Remind reviewers to Review')], default='review', max_length=50), - ), - ] diff --git a/hypha/apply/funds/migrations/0079_auto_20200316_1134.py b/hypha/apply/funds/migrations/0079_auto_20200316_1134.py deleted file mode 100644 index b8f8b6ff65f67999cfa8b7a5a8ba6f3624035b28..0000000000000000000000000000000000000000 --- a/hypha/apply/funds/migrations/0079_auto_20200316_1134.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.11 on 2020-03-16 11:34 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('funds', '0078_auto_20200316_1131'), - ] - - operations = [ - migrations.AlterField( - model_name='reminder', - name='action', - field=models.CharField(choices=[('reviewers_review', 'Remind reviewers to Review')], default='reviewers_review', max_length=50), - ), - ] diff --git a/hypha/apply/funds/migrations/0080_auto_20200319_1020.py b/hypha/apply/funds/migrations/0080_auto_20200319_1020.py deleted file mode 100644 index c2733a20f8b45f34eb4ef3e17f4d64d515401ef8..0000000000000000000000000000000000000000 --- a/hypha/apply/funds/migrations/0080_auto_20200319_1020.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.11 on 2020-03-19 10:20 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('funds', '0079_auto_20200316_1134'), - ] - - operations = [ - migrations.AlterField( - model_name='reminder', - name='action', - field=models.CharField(choices=[('reviewers_review', 'Remind reviewers to Review')], max_length=50), - ), - ]