mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-26 09:52:16 +00:00
Probably not the right way to go about it...but it does work! TODO: How to handle cooldown-emailing shared mailbox addresses?
19 lines
401 B
Python
19 lines
401 B
Python
# Generated by Django 2.0.13 on 2020-01-25 01:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('RIGS', '0037_auto_20200111_1829'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='profile',
|
|
name='last_emailed',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
]
|