mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-06-08 14:17:26 -05:00
29 lines
693 B
Python
29 lines
693 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-03-03 19:29
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
atomic = False
|
|
dependencies = [
|
|
("documents", "0010_log"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameModel(
|
|
old_name="Sender",
|
|
new_name="Correspondent",
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name="document",
|
|
options={"ordering": ("correspondent", "title")},
|
|
),
|
|
migrations.RenameField(
|
|
model_name="document",
|
|
old_name="sender",
|
|
new_name="correspondent",
|
|
),
|
|
]
|