+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_appver_custom_api:/tablelist/okayapi_appver_custom_api.html


-- MySQL Table okayapi_appver_custom_api
-- From: OkayAPI.com
CREATE TABLE `okayapi_appver_custom_api` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `app_id` int(10) NOT NULL DEFAULT '0' COMMENT 'APPID',
    `custom_name` varchar(255) NOT NULL COMMENT '自定义配置的名称',
    `ios_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'iOS是否开启',
    `android_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT '安卓是否开启',
    `custom_content` text NOT NULL COMMENT '配置内容',
    `custom_key` varchar(255) NOT NULL COMMENT '接口的key',
    `custom_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态 0:关闭 1:线上开启 2:测试需要',
    `ios_min` varchar(32) NOT NULL COMMENT 'iOS最小版本',
    `ios_max` varchar(32) NOT NULL COMMENT 'iOS最大版本',
    `android_min` varchar(32) NOT NULL COMMENT '安卓最小版本',
    `android_max` varchar(32) NOT NULL COMMENT '安卓最大版本',
    `created_by` varchar(32) NOT NULL COMMENT '创建人',
    `del_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
    `updated_by` varchar(32) NOT NULL COMMENT '更新人',
    KEY `app_id` (`app_id`),
    KEY `custom_name` (`custom_name`),
    KEY `ios_enabled` (`ios_enabled`),
    KEY `android_enabled` (`android_enabled`),
    KEY `custom_content` (`custom_content`),
    KEY `custom_key` (`custom_key`),
    KEY `custom_status` (`custom_status`),
    KEY `ios_min` (`ios_min`),
    KEY `ios_max` (`ios_max`),
    KEY `android_min` (`android_min`),
    KEY `android_max` (`android_max`),
    KEY `created_by` (`created_by`),
    KEY `del_flag` (`del_flag`),
    KEY `updated_by` (`updated_by`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'App版本管理-自定义接口';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-14 of 14 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
app_idint(10)0APPID0
custom_namevarchar(255)自定义配置的名称
ios_enabledtinyint(1)0iOS是否开启0
android_enabledtinyint(1)0安卓是否开启0
custom_contenttext配置内容
custom_keyvarchar(255)接口的key
custom_statustinyint(1)0状态 0:关闭 1:线上开启 2:测试需要0
ios_minvarchar(32)iOS最小版本
ios_maxvarchar(32)iOS最大版本
android_minvarchar(32)安卓最小版本
android_maxvarchar(32)安卓最大版本
created_byvarchar(32)创建人
del_flagtinyint(1)0是否删除0
updated_byvarchar(32)更新人

Guess You Like

MySQL Table Design okayapi_appver_access_log

MySQL Table Design okayapi_appver_android_version

MySQL Table Design okayapi_appver_apk

MySQL Table Design okayapi_appver_apk_download_record

MySQL Table Design okayapi_appver_app

MySQL Table Design okayapi_appver_channel

MySQL Table Design okayapi_appver_chat_bot

MySQL Table Design okayapi_appver_ios_version

MySQL Table Design okayapi_appver_operation_record_log

MySQL Table Design okayapi_appver_rn_package

MySQL Table Design okayapi_appver_rn_route

MySQL Table Design okayapi_appver_user

MySQL Table Design okayapi_appver_user_app_rel

TOP ↑