field to be able to index across all db backends without problem. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
24 lines
589 B
Python
24 lines
589 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2017-07-05 20:08
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0037_auto_20161231_0617'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='documentversion',
|
|
name='checksum',
|
|
field=models.CharField(
|
|
blank=True, db_index=True, editable=False, max_length=64,
|
|
null=True, verbose_name='Checksum'
|
|
),
|
|
),
|
|
]
|