mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-24 08:52:15 +00:00
Added 'is on campus' field to venue
This commit is contained in:
18
RIGS/migrations/0052_venue_on_campus.py
Normal file
18
RIGS/migrations/0052_venue_on_campus.py
Normal 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?'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user