mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 02:52:48 +00:00
22 lines
625 B
Python
22 lines
625 B
Python
# Generated by Django 4.2.13 on 2024-07-17 13:56
|
|
|
|
import dataset.models.data_set
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('setting', '0005_model_permission_type'),
|
|
('dataset', '0005_file'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='dataset',
|
|
name='embedding_mode',
|
|
field=models.ForeignKey(default=dataset.models.data_set.default_model, on_delete=django.db.models.deletion.DO_NOTHING, to='setting.model', verbose_name='向量模型'),
|
|
),
|
|
]
|