Commit 8c701d03d5ec7f678d64a2e7fb4531ed88c77a25
1 parent
928d3bd8
Exists in
master
and in
2 other branches
migrations
Showing
2 changed files
with
46 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,26 @@ | @@ -0,0 +1,26 @@ | ||
1 | +# -*- coding: utf-8 -*- | ||
2 | +# Generated by Django 1.10.4 on 2017-08-15 15:03 | ||
3 | +from __future__ import unicode_literals | ||
4 | + | ||
5 | +import bulletin.models | ||
6 | +from django.db import migrations, models | ||
7 | + | ||
8 | + | ||
9 | +class Migration(migrations.Migration): | ||
10 | + | ||
11 | + dependencies = [ | ||
12 | + ('bulletin', '0002_auto_20170719_2133'), | ||
13 | + ] | ||
14 | + | ||
15 | + operations = [ | ||
16 | + migrations.AddField( | ||
17 | + model_name='bulletin', | ||
18 | + name='indicators', | ||
19 | + field=models.FileField(blank=True, null=True, upload_to='bulletin/indicators', validators=[bulletin.models.validate_file_extension], verbose_name='Relevant Indicators'), | ||
20 | + ), | ||
21 | + migrations.AlterField( | ||
22 | + model_name='bulletin', | ||
23 | + name='file_content', | ||
24 | + field=models.FileField(blank=True, upload_to='bulletin/goals', validators=[bulletin.models.validate_file_extension], verbose_name='Goals'), | ||
25 | + ), | ||
26 | + ] |
@@ -0,0 +1,20 @@ | @@ -0,0 +1,20 @@ | ||
1 | +# -*- coding: utf-8 -*- | ||
2 | +# Generated by Django 1.10.4 on 2017-08-15 15:03 | ||
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 | + ('subjects', '0014_auto_20170130_1828'), | ||
12 | + ] | ||
13 | + | ||
14 | + operations = [ | ||
15 | + migrations.AlterField( | ||
16 | + model_name='tag', | ||
17 | + name='name', | ||
18 | + field=models.CharField(blank=True, max_length=200, unique=True, verbose_name='Name'), | ||
19 | + ), | ||
20 | + ] |