# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-01-26 20:22
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ideatree', '0049_remove_node_previousfarendnode'),
    ]

    operations = [
        migrations.AddField(
            model_name='map_desc',
            name='orientation',
            field=models.CharField(choices=[('LR', 'Left-Right'), ('RL', 'Right-Left'), ('TB', 'Top-Bottom'), ('BT', 'Bottom-Top')], default='LR', max_length=2),
        ),
    ]
