blob: 5bbe8a1e0e8266c38e4f5291375bf6d61dd8fa90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-11-30 15:56
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0208_auto_20201126_1516'),
]
operations = [
migrations.AddField(
model_name='document',
name='source_page_range',
field=models.CharField(blank=True, max_length=500, null=True, verbose_name='Source - page range'),
),
]
|