You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
1.1 KiB

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-10-31 14:05
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('journals', '0005_auto_20171024_1352'),
]
operations = [
migrations.RemoveField(
model_name='thread',
name='recurse_step',
),
migrations.AddField(
model_name='journal',
name='children',
field=models.ManyToManyField(blank=True, to='journals.Journal'),
),
migrations.AddField(
model_name='thread',
name='is_recurse',
field=models.BooleanField(default=False, verbose_name='Поле аптимизации поиска'),
),
migrations.AlterField(
model_name='journal',
name='action_type',
field=models.SmallIntegerField(choices=[(0, 'try'), (1, 'yes'), (2, 'no'), (3, 'favorite'), (4, 'watch'), (5, 'like'), (6, 'dislike'), (7, 'comment'), (8, 'start'), (9, 'end'), (10, 'create'), (11, 'update'), (12, 'delete')]),
),
]