summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/dashboard/migrations/0003_auto_20160815_1512.py
blob: 53b4fcd457115cc9f9dfaccc15f7376ca2ffead2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-08-15 15:12
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('dashboard', '0002_auto_20160815_1511'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='resource',
            name='slave',
        ),
        migrations.AddField(
            model_name='resource',
            name='slavename',
            field=models.CharField(blank=True, max_length=50, null=True),
        ),
    ]