22 lines
615 B
Python
22 lines
615 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.11 on 2018-08-07 18:44
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('auth', '0008_alter_user_username_max_length'),
|
|
('equipment', '0003_auto_20180807_1843'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='equipment',
|
|
name='owner',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='auth.Group'),
|
|
),
|
|
]
|