migrations
This commit is contained in:
parent
9bbe577d2f
commit
2227b04e2c
33
content/migrations/0011_auto_20180822_1832.py
Normal file
33
content/migrations/0011_auto_20180822_1832.py
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.11.8 on 2018-08-22 18:32
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import django.core.validators
|
||||||
|
from django.db import migrations, models
|
||||||
|
import django.db.models.deletion
|
||||||
|
import markdownx.models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('content', '0010_auto_20180222_1319'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='content',
|
||||||
|
name='photo',
|
||||||
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='main_photo', to='photologue.Photo'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='content',
|
||||||
|
name='schedule',
|
||||||
|
field=markdownx.models.MarkdownxField(blank=True, default='', null=True),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='content',
|
||||||
|
name='teaser',
|
||||||
|
field=models.TextField(blank=True, null=True, validators=[django.core.validators.MaxLengthValidator(250)]),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user