Add comment in product type

This commit is contained in:
2017-10-22 21:10:02 +02:00
parent cd4b0d8e0c
commit 6113de33ec
4 changed files with 26 additions and 2 deletions

View File

@ -0,0 +1,19 @@
# -*- 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),
),
]