poulpe/equipment/migrations/0003_auto_20180807_1828.py

25 lines
638 B
Python
Raw Normal View History

2018-08-07 20:29:37 +02:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-08-07 18:28
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('equipment', '0002_auto_20180807_1658'),
]
operations = [
migrations.AlterField(
model_name='equipment',
name='owner',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='auth.Group'),
),
migrations.DeleteModel(
name='EquipmentOwner',
),
]