Add token to counter to see pictures and to prevend misuses

This commit is contained in:
Skia
2016-09-26 11:17:00 +02:00
parent 37072e1640
commit a4ad7f0e85
5 changed files with 60 additions and 4 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', '0007_product_archived'),
]
operations = [
migrations.AddField(
model_name='counter',
name='token',
field=models.CharField(blank=True, max_length=30, verbose_name='token', null=True),
),
]