Nenhuma Descrição

0005_mchinfodecryptloginfo.py 1.9KB

    # -*- coding: utf-8 -*- # Generated by Django 1.11.15 on 2018-09-17 04:14 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('logs', '0004_mchinfoencryptloginfo_distributor_pk'), ] operations = [ migrations.CreateModel( name='MchInfoDecryptLogInfo', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('status', models.BooleanField(db_index=True, default=True, help_text='Status', verbose_name='status')), ('created_at', models.DateTimeField(auto_now_add=True, help_text='Create Time', verbose_name='created_at')), ('updated_at', models.DateTimeField(auto_now=True, help_text='Update Time', verbose_name='updated_at')), ('ciphertext', models.CharField(blank=True, db_index=True, help_text='\u5f85\u89e3\u5bc6\u5b57\u7b26\u4e32', max_length=64, null=True, verbose_name='ciphertext')), ('brand_pk', models.IntegerField(db_index=True, default=0, help_text='\u54c1\u724cPK', verbose_name='brand_pk')), ('model_pk', models.IntegerField(db_index=True, default=0, help_text='\u578b\u53f7PK', verbose_name='model_pk')), ('distributor_pk', models.IntegerField(db_index=True, default=0, help_text='\u7ecf\u9500\u5546PK', verbose_name='distributor_pk')), ('sn', models.CharField(blank=True, db_index=True, help_text='\u5e8f\u5217\u53f7', max_length=32, null=True, verbose_name='sn')), ('decrypt_count', models.IntegerField(default=1, help_text='\u89e3\u5bc6\u6b21\u6570', verbose_name='decrypt_count')), ], options={ 'verbose_name': 'mchinfodecryptloginfo', 'verbose_name_plural': 'mchinfodecryptloginfo', }, ), ]