mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00

Rename exporter to export and fixt some debugging Account for files not matching the sender/title pattern Added a safety note Wrong regex on the name parser Renamed the command to something slightly less ambiguous
22 lines
576 B
Python
22 lines
576 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9 on 2016-01-14 18:44
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0003_sender'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='document',
|
|
name='sender',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='documents', to='documents.Sender'),
|
|
),
|
|
]
|