mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
22 lines
507 B
Python
22 lines
507 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.db import models, migrations
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('RIGS', '0027_eventauthorisation_event_singular'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='eventauthorisation',
|
|
name='sent_by',
|
|
field=models.ForeignKey(default=1, to=settings.AUTH_USER_MODEL, on_delete=models.CASCADE),
|
|
preserve_default=False,
|
|
),
|
|
]
|