Skip to content

Commit bba9e62

Browse files
committed
fix: add migrations for altering workspace_id and creating ModelWorkspaceAuthorization
1 parent 4e203f8 commit bba9e62

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.2.1 on 2025-06-12 08:30
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('models_provider', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='model',
15+
name='workspace_id',
16+
field=models.CharField(db_index=True, default='default', max_length=64, verbose_name='工作空间id'),
17+
),
18+
]

0 commit comments

Comments
 (0)