21 lines
454 B
Python
21 lines
454 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2018-02-26 22:40
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('newsroom', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='attachment',
|
|
name='file',
|
|
field=models.FileField(upload_to='PressRelease'),
|
|
),
|
|
]
|