chore: add migration for room default_helpers=1
This commit is contained in:
parent
040c9d94f9
commit
1509cb6312
|
@ -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),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue