19 lines
426 B
Python
19 lines
426 B
Python
|
# Generated by Django 3.1.1 on 2020-10-10 15:13
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0005_auto_20201010_1711'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='profilo',
|
||
|
name='background_image',
|
||
|
field=models.ImageField(default='background_image.jpg', upload_to=''),
|
||
|
),
|
||
|
]
|