Commit 7558958e9fe22fcd451b657c80a281eb646a7203
1 parent
9c295d77
Exists in
master
and in
2 other branches
bulletin migrations updated
Showing
1 changed file
with
21 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,21 @@ |
1 | +# -*- coding: utf-8 -*- | |
2 | +# Generated by Django 1.10.4 on 2017-07-20 00:33 | |
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', '0001_initial'), | |
13 | + ] | |
14 | + | |
15 | + operations = [ | |
16 | + migrations.AlterField( | |
17 | + model_name='bulletin', | |
18 | + name='file_content', | |
19 | + field=models.FileField(blank=True, upload_to='files/', validators=[bulletin.models.validate_file_extension], verbose_name='Bulletin Data (Goals)'), | |
20 | + ), | |
21 | + ] | ... | ... |