48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2017-07-06 03:30
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0038_auto_20170705_2008'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='DuplicatedDocument',
|
|
fields=[
|
|
(
|
|
'id', models.AutoField(
|
|
auto_created=True, primary_key=True, serialize=False,
|
|
verbose_name='ID')
|
|
),
|
|
(
|
|
'datetime_added', models.DateTimeField(
|
|
auto_now_add=True, db_index=True,
|
|
verbose_name='Added')
|
|
),
|
|
(
|
|
'document', models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
related_name='duplicates', to='documents.Document',
|
|
verbose_name='Document')
|
|
),
|
|
(
|
|
'documents', models.ManyToManyField(
|
|
to='documents.Document',
|
|
verbose_name='Duplicated documents'
|
|
)
|
|
),
|
|
],
|
|
options={
|
|
'verbose_name': 'Duplicated document',
|
|
'verbose_name_plural': 'Duplicated documents',
|
|
},
|
|
),
|
|
]
|