Development Override Compose File
[laas.git] / src / dashboard / migrations / 0002_auto_20170505_0815.py
1 ##############################################################################
2 # Copyright (c) 2016 Max Breitenfeldt and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10
11 # -*- coding: utf-8 -*-
12 # Generated by Django 1.10 on 2017-05-05 08:15
13 from __future__ import unicode_literals
14
15 from django.conf import settings
16 from django.db import migrations, models
17 import django.db.models.deletion
18
19
20 class Migration(migrations.Migration):
21
22     dependencies = [
23         ('dashboard', '0001_initial'),
24     ]
25
26     operations = [
27         migrations.AddField(
28             model_name='resource',
29             name='dev_pod',
30             field=models.BooleanField(default=False),
31         ),
32         migrations.AlterField(
33             model_name='resource',
34             name='owner',
35             field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='user_lab_owner', to=settings.AUTH_USER_MODEL),
36         ),
37         migrations.AlterField(
38             model_name='resource',
39             name='slave',
40             field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='jenkins.JenkinsSlave'),
41         ),
42     ]