Added 'is on campus' field to venue

This commit is contained in:
2023-09-23 18:54:29 +00:00
parent 5a54092771
commit ef2826ab0a
8 changed files with 226 additions and 120 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.21 on 2023-09-05 22:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0051_alter_payment_method'),
]
operations = [
migrations.AddField(
model_name='venue',
name='on_campus',
field=models.BooleanField(default=False, verbose_name='Is this venue on a UoN campus?'),
),
]