blob: b851588c45598e8c39e74d21526d79c90a413feb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-08-13 14:43
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('dashboard', '0003_auto_20160813_1302'),
]
operations = [
migrations.AddField(
model_name='resource',
name='owners',
field=models.ManyToManyField(to=settings.AUTH_USER_MODEL),
),
]
|