23 lines
523 B
Python
23 lines
523 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0020_auto_20150714_2233'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='documentversion',
|
|
name='comment',
|
|
field=models.TextField(
|
|
default='', null=True, verbose_name='Comment', blank=True
|
|
),
|
|
preserve_default=True,
|
|
),
|
|
]
|