25 lines
638 B
Python
25 lines
638 B
Python
|
# -*- 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',
|
||
|
),
|
||
|
]
|