summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/src/dashboard/migrations/0002_auto_20161005_1202.py
blob: e47c3b138491138ca6a00df1c07b568ee37b8d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-10-05 12:02
from __future__ import unicode_literals

from django.conf import settings
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('dashboard', '0001_initial'),
    ]

    operations = [
        migrations.AlterField(
            model_name='resource',
            name='vpn_users',
            field=models.ManyToManyField(blank=True, related_name='user_vpn_users', to=settings.AUTH_USER_MODEL),
        ),
    ]