22 lines
476 B
Python
22 lines
476 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.11 on 2018-08-07 18:43
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('equipment', '0002_auto_20180807_1658'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='equipment',
|
|
name='owner',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='EquipmentOwner',
|
|
),
|
|
]
|