Web M&M
https://mam.matfyz.cz
19 lines
490 B
19 lines
490 B
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0039_pohadka'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='pohadka',
|
|
name='autor',
|
|
field=models.ForeignKey(verbose_name=b'Autor poh\xc3\xa1dky', to=settings.AUTH_USER_MODEL, null=True, on_delete=models.CASCADE),
|
|
),
|
|
]
|
|
|