mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
26 lines
625 B
Python
26 lines
625 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.2 on 2016-10-05 21:38
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0014_document_checksum'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='correspondent',
|
|
name='is_insensitive',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='tag',
|
|
name='is_insensitive',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|