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.
27 lines
736 B
27 lines
736 B
# -*- 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',
|
|
),
|
|
]
|