mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("counter", "0004_auto_20160826_1907")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="counter",
|
|
name="club",
|
|
field=models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
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"
|
|
),
|
|
),
|
|
]
|