Commit 7558958e9fe22fcd451b657c80a281eb646a7203

Authored by Gustavo
1 parent 9c295d77

bulletin migrations updated

Showing 1 changed file with 21 additions and 0 deletions   Show diff stats
bulletin/migrations/0002_auto_20170719_2133.py 0 → 100644
... ... @@ -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 + ]
... ...