You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
541 B
Python
24 lines
541 B
Python
# Generated by Django 4.2.5 on 2024-10-07 07:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('osichat', '0033_chatconnection'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='chatroom',
|
|
name='group',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name='chatroom',
|
|
name='visitor',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|