Skip to content
This repository has been archived by the owner on Nov 12, 2022. It is now read-only.

Commit

Permalink
Fixing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
lauryndbrown committed Aug 30, 2021
1 parent 7276d4e commit 1298826
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 44 deletions.
18 changes: 0 additions & 18 deletions amy/autoemails/migrations/0016_auto_20210803_2259.py

This file was deleted.

18 changes: 18 additions & 0 deletions amy/autoemails/migrations/0016_auto_20210809_0701.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.24 on 2021-08-09 07:01

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('autoemails', '0015_auto_20210405_1920'),
]

operations = [
migrations.AlterField(
model_name='rqjob',
name='recipients',
field=models.TextField(blank=True, default='', verbose_name='Mail recipients'),
),
]
18 changes: 0 additions & 18 deletions amy/autoemails/migrations/0017_auto_20210809_0817.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.2.24 on 2021-08-11 18:20
# Generated by Django 2.2.24 on 2021-08-30 00:09

from django.conf import settings
from django.db import migrations, models
Expand All @@ -9,7 +9,7 @@ class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('autoemails', '0017_auto_20210809_0817'),
('autoemails', '0016_auto_20210809_0701'),
]

operations = [
Expand All @@ -24,9 +24,9 @@ class Migration(migrations.Migration):
field=models.IntegerField(blank=True, null=True, verbose_name='Result TTL'),
),
migrations.AlterField(
model_name='rqjob',
name='recipients',
field=models.TextField(blank=True, default='', verbose_name='Mail recipients'),
model_name='trigger',
name='action',
field=models.CharField(choices=[('new-instructor', 'Instructor is added to the workshop'), ('new-supporting-instructor', 'Supporting Instructor is added to the workshop'), ('week-after-workshop-completion', '7 days past the end date of an active workshop'), ('self-organised-request-form', 'A new event is created from Self-Organised Request Form'), ('instructors-host-introduction', 'Introduction of instrutors and host (centr. org. workshop)'), ('ask-for-website', 'Website URL is missing'), ('recruit-helpers', 'Recruit helpers'), ('workshop-request-response1', 'Response to Workshop Request 1'), ('workshop-request-response2', 'Response to Workshop Request 2'), ('workshop-request-response3', 'Response to Workshop Request 3'), ('consent-required', 'There is a new or updated term added that the users should consent to'), ('profile-update', 'Reminder to for the user to update the information in their profile.')], max_length=50, verbose_name='Action'),
),
migrations.CreateModel(
name='EmailReminder',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Generated by Django 2.2.24 on 2021-08-11 18:50
# Generated by Django 2.2.24 on 2021-08-30 00:09

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('autoemails', '0018_auto_20210811_1820'),
('workshops', '0249_auto_20210709_1542'),
('autoemails', '0017_auto_20210830_0009'),
('workshops', '0250_auto_20210807_1951'),
]

operations = [
Expand Down

0 comments on commit 1298826

Please sign in to comment.