From 7558958e9fe22fcd451b657c80a281eb646a7203 Mon Sep 17 00:00:00 2001 From: Gustavo Date: Wed, 19 Jul 2017 21:34:14 -0300 Subject: [PATCH] bulletin migrations updated --- bulletin/migrations/0002_auto_20170719_2133.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+), 0 deletions(-) create mode 100644 bulletin/migrations/0002_auto_20170719_2133.py diff --git a/bulletin/migrations/0002_auto_20170719_2133.py b/bulletin/migrations/0002_auto_20170719_2133.py new file mode 100644 index 0000000..347f958 --- /dev/null +++ b/bulletin/migrations/0002_auto_20170719_2133.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.4 on 2017-07-20 00:33 +from __future__ import unicode_literals + +import bulletin.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('bulletin', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='bulletin', + name='file_content', + field=models.FileField(blank=True, upload_to='files/', validators=[bulletin.models.validate_file_extension], verbose_name='Bulletin Data (Goals)'), + ), + ] -- libgit2 0.21.2