mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
20 lines
451 B
Python
20 lines
451 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('RIGS', '0026_remove_eventauthorisation_created_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='eventauthorisation',
|
|
name='event',
|
|
field=models.OneToOneField(related_name='authorisation', to='RIGS.Event', on_delete=models.CASCADE),
|
|
),
|
|
]
|