24 lines
856 B
Python
24 lines
856 B
Python
# Generated by Django 2.2.28 on 2022-08-18 09:05
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('activity', '0002_auto_20220817_2253'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='activity',
|
|
name='attendees_club',
|
|
field=models.ForeignKey(help_text='Club that is authorized to join the activity.', on_delete=django.db.models.deletion.PROTECT, related_name='+', to='member.Club', verbose_name='attendees club'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='activity',
|
|
name='location',
|
|
field=models.CharField(blank=True, default='', help_text='Place where the activity is organized, eg. BDE.', max_length=255, verbose_name='location'),
|
|
),
|
|
]
|