chore: add migration for room default_helpers=1

This commit is contained in:
Luca 2025-05-17 00:17:49 +02:00
parent 040c9d94f9
commit 1509cb6312
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 5.0.4 on 2025-05-16 22:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("app", "0013_room_send_reminders"),
]
operations = [
migrations.AlterField(
model_name="room",
name="required_helpers",
field=models.IntegerField(default=1),
),
]