mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 03:49:24 +00:00
All: Apply Black coding rules
This commit is contained in:
@ -6,24 +6,31 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('counter', '0004_auto_20160826_1907'),
|
||||
]
|
||||
dependencies = [("counter", "0004_auto_20160826_1907")]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='counter',
|
||||
name='club',
|
||||
field=models.ForeignKey(verbose_name='club', to='club.Club', related_name='counters'),
|
||||
model_name="counter",
|
||||
name="club",
|
||||
field=models.ForeignKey(
|
||||
verbose_name="club", to="club.Club", related_name="counters"
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='counter',
|
||||
name='products',
|
||||
field=models.ManyToManyField(blank=True, related_name='counters', to='counter.Product', verbose_name='products'),
|
||||
model_name="counter",
|
||||
name="products",
|
||||
field=models.ManyToManyField(
|
||||
blank=True,
|
||||
related_name="counters",
|
||||
to="counter.Product",
|
||||
verbose_name="products",
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='permanency',
|
||||
name='activity',
|
||||
field=models.DateTimeField(auto_now=True, verbose_name='last activity date'),
|
||||
model_name="permanency",
|
||||
name="activity",
|
||||
field=models.DateTimeField(
|
||||
auto_now=True, verbose_name="last activity date"
|
||||
),
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user