mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
31 lines
800 B
Python
31 lines
800 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.db import models, migrations
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('RIGS', '0029_eventauthorisation_sent_by'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='event',
|
|
name='auth_request_at',
|
|
field=models.DateTimeField(null=True, blank=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='event',
|
|
name='auth_request_by',
|
|
field=models.ForeignKey(blank=True, to=settings.AUTH_USER_MODEL, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='event',
|
|
name='auth_request_to',
|
|
field=models.EmailField(max_length=254, null=True, blank=True),
|
|
),
|
|
]
|