Add missed migration
parent
75bc33b759
commit
503beb68b9
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.4 on 2017-02-01 10:53
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('attachments', '0007_attachment_from_comment'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='attachment',
|
||||
name='from_comment',
|
||||
field=models.BooleanField(default=False, verbose_name='from comment'),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue