# -*- coding: utf-8 -*- # Generated by Django 1.9.7 on 2016-08-29 15:37 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('common', '0005_settings_accountant_send_email'), ] operations = [ migrations.CreateModel( name='Tooltip', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=255, unique=True)), ('text', models.TextField()), ], options={ 'verbose_name_plural': 'Подсказки', 'verbose_name': 'Подсказка', }, ), ]