22 lines
581 B
Python
22 lines
581 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.11 on 2018-08-08 14:54
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('equipment', '0007_equipmentattribute_equipmentattributevalue'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='equipment',
|
||
|
name='category',
|
||
|
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='equipment.EquipmentCategory'),
|
||
|
),
|
||
|
]
|