o/kodo/issues"> 工单管理 0 合并请求 0 提交历史 152 版本发布 0

暂无描述

0005_auto_20160509_1907.py 2.5KB

    # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations import operation.models class Migration(migrations.Migration): dependencies = [ ('operation', '0004_guestentrancecontrolinfo'), ] operations = [ migrations.RemoveField( model_name='latestappinfo', name='latest_app', ), migrations.RemoveField( model_name='latestappinfo', name='latest_url', ), migrations.RemoveField( model_name='latestappinfo', name='latest_version', ), migrations.AddField( model_name='latestappinfo', name='latest_adr_app', field=models.FileField(help_text='\u6700\u65b0\u7248\u5b89\u5353 APP', upload_to=operation.models.upload_path, null=True, verbose_name='latest_adr_app', blank=True), ), migrations.AddField( model_name='latestappinfo', name='latest_adr_url', field=models.URLField(help_text='\u6700\u65b0\u7248 APP \u94fe\u63a5', max_length=255, null=True, verbose_name='latest_adr_url', blank=True), ), migrations.AddField( model_name='latestappinfo', name='latest_adr_version_code', field=models.IntegerField(default=0, help_text='\u6700\u65b0\u5b89\u5353\u7248\u672c\u53f7', verbose_name='latest_adr_version_code'), ), migrations.AddField( model_name='latestappinfo', name='latest_adr_version_name', field=models.CharField(help_text='\u6700\u65b0\u5b89\u5353\u7248\u672c\u540d', max_length=255, null=True, verbose_name='latest_adr_version_name', blank=True), ), migrations.AddField( model_name='latestappinfo', name='latest_ios_url', field=models.URLField(help_text='\u6700\u65b0\u7248 iOS \u94fe\u63a5', max_length=255, null=True, verbose_name='latest_ios_url', blank=True), ), migrations.AddField( model_name='latestappinfo', name='latest_ios_version_code', field=models.IntegerField(default=0, help_text='\u6700\u65b0 iOS \u7248\u672c\u53f7', verbose_name='latest_ios_version_code'), ), migrations.AddField( model_name='latestappinfo', name='latest_ios_version_name', field=models.CharField(help_text='\u6700\u65b0 iOS \u7248\u672c\u540d', max_length=255, null=True, verbose_name='latest_ios_version_name', blank=True), ), ]
adminSystem - Gogs: Go Git Service

Keine Beschreibung

LICENSE 1.1KB

    The MIT License (MIT) Copyright (c) 2014 Josh Wolfe Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.