mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 19:23:27 +00:00
25 lines
607 B
Python
25 lines
607 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('counter', '0004_auto_20160817_1655'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='product',
|
||
|
name='code',
|
||
|
field=models.CharField(verbose_name='code', max_length=10, blank=True),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='product',
|
||
|
name='name',
|
||
|
field=models.CharField(verbose_name='name', max_length=64),
|
||
|
),
|
||
|
]
|