From c7f97df92da15dd9ccd4075e480356d54c5f18b4 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Thu, 9 Feb 2017 01:52:23 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86=D1=83=20=D0=B4=D0=BB=D1=8F?= =?UTF-8?q?=20=D0=BF=D0=B0=D1=80=D0=BE=D0=BB=D0=B5=D0=B9=20=D0=B0=D0=B1?= =?UTF-8?q?=D0=BE=D0=BD=D0=B5=D0=BD=D1=82=D0=BE=D0=B2.=20=D0=9E=D0=BD?= =?UTF-8?q?=D0=B8=20=D0=B8=D0=BD=D0=BE=D0=B3=D0=B4=D0=B0=20=D1=82=D1=80?= =?UTF-8?q?=D0=B5=D0=B1=D1=83=D1=8E=D1=82=20=D1=87=D1=82=D0=BE=D0=B1=20?= =?UTF-8?q?=D0=BC=D1=8B=20=D0=B7=D0=BD=D0=B0=D0=BB=D0=B8=20=D0=B8=D1=85=20?= =?UTF-8?q?=D0=BF=D0=B0=D1=80=D0=BE=D0=BB=D1=8C=20(=D1=81=D1=82=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D0=BD=D1=8B=D0=B5=20=D0=B2=D0=BE=D0=BE=D0=B1=D1=89?= =?UTF-8?q?=D0=B5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- abonapp/migrations/0008_auto_20170209_0002.py | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 abonapp/migrations/0008_auto_20170209_0002.py diff --git a/abonapp/migrations/0008_auto_20170209_0002.py b/abonapp/migrations/0008_auto_20170209_0002.py new file mode 100644 index 0000000..8d24b5d --- /dev/null +++ b/abonapp/migrations/0008_auto_20170209_0002.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2017-02-08 21:02 +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('abonapp', '0007_auto_20170131_1650'), + ] + + operations = [ + migrations.CreateModel( + name='AbonRawPassword', + fields=[ + ('account', models.OneToOneField(primary_key=True, serialize=False, to='abonapp.Abon')), + ('passw_text', models.CharField(max_length=64)), + ], + options={ + 'db_table': 'abon_raw_password', + }, + ), + migrations.AlterModelTable( + name='abonstreet', + table='abon_street', + ), + ]