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.
25 lines
876 B
25 lines
876 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-05-24 12:55
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0015_price_key'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='price',
|
|
name='flex',
|
|
field=models.BooleanField(default=False, verbose_name='\u041e\u043f\u0438\u0440\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='price',
|
|
name='key',
|
|
field=models.CharField(blank=True, editable=False, max_length=255, null=True, verbose_name='\u041a\u043b\u044e\u0447 \u0434\u043e\u0441\u0442\u0443\u043f\u0430'),
|
|
),
|
|
]
|
|
|