mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-28 14:52:58 +00:00
fix: add migrations for altering workspace_id and creating ModelWorkspaceAuthorization
This commit is contained in:
parent
4e203f8f95
commit
bba9e62d43
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.2.1 on 2025-06-12 08:30
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('models_provider', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='model',
|
||||
name='workspace_id',
|
||||
field=models.CharField(db_index=True, default='default', max_length=64, verbose_name='工作空间id'),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in New Issue