Sith/counter/migrations/0016_producttype_comment.py

18 lines
409 B
Python
Raw Normal View History

2017-10-22 19:10:02 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2018-10-04 19:29:19 +00:00
dependencies = [("counter", "0015_merge")]
2017-10-22 19:10:02 +00:00
operations = [
migrations.AddField(
2018-10-04 19:29:19 +00:00
model_name="producttype",
name="comment",
field=models.TextField(verbose_name="comment", blank=True, null=True),
)
2017-10-22 19:10:02 +00:00
]