mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
Translate datepicker and add age limit to products
This commit is contained in:
24
counter/migrations/0015_auto_20160820_0158.py
Normal file
24
counter/migrations/0015_auto_20160820_0158.py
Normal file
@ -0,0 +1,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('counter', '0014_auto_20160819_1650'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='product',
|
||||
name='limit_age',
|
||||
field=models.IntegerField(default=0, verbose_name='limit age'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='product',
|
||||
name='tray',
|
||||
field=models.BooleanField(default=False, verbose_name='tray price'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user