19 lines
385 B
Python
19 lines
385 B
Python
|
# Generated by Django 4.0 on 2022-05-21 17:03
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('room', '0008_alter_room_anonymousmembers'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='room',
|
||
|
name='online',
|
||
|
field=models.JSONField(default=list),
|
||
|
),
|
||
|
]
|