19 lines
418 B
Python
19 lines
418 B
Python
|
# Generated by Django 2.1.8 on 2020-08-03 15:35
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dashboard', '0004_auto_20200803_1125'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='organization',
|
||
|
name='image',
|
||
|
field=models.FileField(blank=True, null=True, upload_to='cover'),
|
||
|
),
|
||
|
]
|