Sith/counter/migrations/0016_producttype_comment.py

17 lines
408 B
Python

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