19 lines
429 B
Python
19 lines
429 B
Python
# Generated by Django 4.2.16 on 2025-03-29 01:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('web', '0002_alter_event_chosen_date_alter_event_participants'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='event',
|
|
name='participants',
|
|
field=models.IntegerField(blank=True, default=1),
|
|
),
|
|
]
|