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