mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-31 18:22:49 +00:00
23 lines
553 B
Python
23 lines
553 B
Python
# Generated by Django 5.2.1 on 2025-05-27 06:42
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('application', '0001_initial'),
|
|
('knowledge', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='applicationknowledgemapping',
|
|
name='knowledge',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, to='knowledge.knowledge'),
|
|
),
|
|
]
|