File size: 504 Bytes
3786a3f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Generated by Django 4.2.30 on 2026-07-10 06:26

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('graphrag', '0002_document_processing_progress_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='document',
            name='source',
            field=models.CharField(blank=True, default='', help_text='Optional source label (e.g. research-paper, internal-wiki)', max_length=255),
        ),
    ]