21 lines
470 B
Python
21 lines
470 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('galerie', '0003_add_galerie_poradi'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='obrazek',
|
||
|
name='galerie',
|
||
|
field=models.ForeignKey(blank=True, to='galerie.Galerie', null=True),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
]
|