mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
19 lines
417 B
Python
19 lines
417 B
Python
# Generated by Django 4.1.13 on 2024-03-28 13:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('application', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='chat',
|
|
name='client_id',
|
|
field=models.UUIDField(default=None, null=True, verbose_name='客户端id'),
|
|
),
|
|
]
|