Initial work on associating events with subhires

This commit is contained in:
2022-10-20 12:56:42 +01:00
parent 4449efcced
commit 948a41f43a
11 changed files with 447 additions and 746 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.16 on 2022-10-20 11:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0045_subhire'),
]
operations = [
migrations.AddField(
model_name='subhire',
name='events',
field=models.ManyToManyField(to='RIGS.Event'),
),
]