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', + ), + ]