mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	removed content index
This commit is contained in:
		
							
								
								
									
										18
									
								
								src/documents/migrations/1004_auto_20201029_1331.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								src/documents/migrations/1004_auto_20201029_1331.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
# Generated by Django 3.1.2 on 2020-10-29 13:31
 | 
			
		||||
 | 
			
		||||
from django.db import migrations, models
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class Migration(migrations.Migration):
 | 
			
		||||
 | 
			
		||||
    dependencies = [
 | 
			
		||||
        ('documents', '1003_auto_20201028_1751'),
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
    operations = [
 | 
			
		||||
        migrations.AlterField(
 | 
			
		||||
            model_name='document',
 | 
			
		||||
            name='content',
 | 
			
		||||
            field=models.TextField(blank=True, help_text='The raw, text-only data of the document. This field is primarily used for searching.'),
 | 
			
		||||
        ),
 | 
			
		||||
    ]
 | 
			
		||||
@@ -159,9 +159,8 @@ class Document(models.Model):
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    content = models.TextField(
 | 
			
		||||
        db_index=True,
 | 
			
		||||
        blank=True,
 | 
			
		||||
        help_text="The raw, text-only data of the document.  This field is "
 | 
			
		||||
        help_text="The raw, text-only data of the document. This field is "
 | 
			
		||||
                  "primarily used for searching."
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user