added new modell field Project.end_mail_send to assure that mails will be only send once
parent
2bb8ee517d
commit
73b41066e9
@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.1.1 on 2020-10-22 09:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('input', '0019_auto_20201021_1148'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='project',
|
||||
name='project_end_mail',
|
||||
field=models.BooleanField(null=True),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.1.1 on 2020-10-22 09:34
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('input', '0020_project_project_end_mail'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='project',
|
||||
old_name='project_end_mail',
|
||||
new_name='end_mail_send',
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue