Commit 9a24f164d45c44d8e51b4ab4c6f06659b85d88a9
1 parent
5b2ad72c
Exists in
master
and in
5 other branches
migration actor field #41
Showing
1 changed file
with
20 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,20 @@ | @@ -0,0 +1,20 @@ | ||
1 | +# -*- coding: utf-8 -*- | ||
2 | +# Generated by Django 1.10 on 2016-09-08 14:51 | ||
3 | +from __future__ import unicode_literals | ||
4 | + | ||
5 | +from django.db import migrations, models | ||
6 | + | ||
7 | + | ||
8 | +class Migration(migrations.Migration): | ||
9 | + | ||
10 | + dependencies = [ | ||
11 | + ('core', '0003_auto_20160908_1108'), | ||
12 | + ] | ||
13 | + | ||
14 | + operations = [ | ||
15 | + migrations.AlterField( | ||
16 | + model_name='resource', | ||
17 | + name='name', | ||
18 | + field=models.CharField(max_length=100, unique=True, verbose_name='Name'), | ||
19 | + ), | ||
20 | + ] |