mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
37 lines
1002 B
Python
37 lines
1002 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
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"
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
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"
|
|
),
|
|
),
|
|
]
|