blob: 7bb1552d8e777349ff65c1e5eeb0ffde5451b07b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-03-11 15:54
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('chimere', '0011_auto_20171123_1654'),
]
operations = [
migrations.AddField(
model_name='area',
name='favicon',
field=models.ImageField(blank=True, null=True, upload_to='', verbose_name='Favicon'),
),
]
|