mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 03:49:24 +00:00
Finish the launderette click view
This commit is contained in:
35
counter/migrations/0012_auto_20160801_2016.py
Normal file
35
counter/migrations/0012_auto_20160801_2016.py
Normal file
@ -0,0 +1,35 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('counter', '0011_counter_sellers'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='refilling',
|
||||
name='is_validated',
|
||||
field=models.BooleanField(default=False, verbose_name='is validated'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='selling',
|
||||
name='is_validated',
|
||||
field=models.BooleanField(default=False, verbose_name='is validated'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='selling',
|
||||
name='label',
|
||||
field=models.CharField(max_length=30, default='troll', verbose_name='label'),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='selling',
|
||||
name='product',
|
||||
field=models.ForeignKey(related_name='sellings', to='counter.Product', blank=True),
|
||||
),
|
||||
]
|
19
counter/migrations/0013_auto_20160801_2255.py
Normal file
19
counter/migrations/0013_auto_20160801_2255.py
Normal 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', '0012_auto_20160801_2016'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='selling',
|
||||
name='product',
|
||||
field=models.ForeignKey(to='counter.Product', null=True, related_name='sellings', blank=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user