Skip to content
Snippets Groups Projects
Commit 5dde86c3 authored by Andreas Hubel's avatar Andreas Hubel
Browse files

chore(room-model): change official_room_order default to 1000

parent e9ea2a45
Branches
Tags
No related merge requests found
# Generated by Django 5.1.3 on 2024-12-21 01:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0165_alter_eventparticipant_options_and_more"),
]
operations = [
migrations.AlterField(
model_name="room",
name="official_room_order",
field=models.IntegerField(
default=1000,
help_text="Room__official_room_order__help",
verbose_name="Room__official_room_order",
),
),
]
......@@ -149,7 +149,7 @@ class Room(BackendMixin, models.Model):
is_public_fahrplan = models.BooleanField(default=False, help_text=_('Room__is_public_fahrplan__help'), verbose_name=_('Room__is_public_fahrplan'))
is_official = models.BooleanField(default=False, help_text=_('Room__is_official__help'), verbose_name=_('Room__is_official'))
official_room_order = models.IntegerField(default=0, help_text=_('Room__official_room_order__help'), verbose_name=_('Room__official_room_order'))
official_room_order = models.IntegerField(default=1000, help_text=_('Room__official_room_order__help'), verbose_name=_('Room__official_room_order'))
room_type = models.CharField(max_length=20, choices=RoomType.choices, help_text=_('Room__type__help'), verbose_name=_('Room__type'))
"""Style of the room."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment