+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_appver_rn_route:/tablelist/okayapi_appver_rn_route.html


-- MySQL Table okayapi_appver_rn_route
-- From: OkayAPI.com
CREATE TABLE `okayapi_appver_rn_route` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `app_id` int(10) NOT NULL DEFAULT '0' COMMENT 'appid',
    `route_name` varchar(255) NOT NULL COMMENT '路由通用昵称',
    `route_key` varchar(3000) NOT NULL COMMENT '被拦截URL(约定)',
    `route_value` varchar(3000) NOT NULL COMMENT '目标URL',
    `ios_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否iOS开启',
    `android_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否android开启',
    `route_status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '路由状态 0:关闭 1:线上开启 2:测试需要',
    `created_by` varchar(32) NOT NULL COMMENT '',
    `updated_by` varchar(32) NOT NULL COMMENT '更新人',
    `ios_min` varchar(32) NOT NULL COMMENT 'ios最小版本',
    `ios_max` varchar(32) NOT NULL COMMENT 'ios最大版本',
    `android_min` varchar(32) NOT NULL COMMENT 'android最小版本',
    `android_max` varchar(32) NOT NULL COMMENT 'android最大版本',
    `del_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
    KEY `app_id` (`app_id`),
    KEY `route_name` (`route_name`),
    KEY `route_key` (`route_key`),
    KEY `route_value` (`route_value`),
    KEY `ios_enabled` (`ios_enabled`),
    KEY `android_enabled` (`android_enabled`),
    KEY `route_status` (`route_status`),
    KEY `created_by` (`created_by`),
    KEY `updated_by` (`updated_by`),
    KEY `ios_min` (`ios_min`),
    KEY `ios_max` (`ios_max`),
    KEY `android_min` (`android_min`),
    KEY `android_max` (`android_max`),
    KEY `del_flag` (`del_flag`),
    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
route_namevarchar(255)路由通用昵称
route_keyvarchar(3000)被拦截URL(约定)
route_valuevarchar(3000)目标URL
ios_enabledtinyint(1)0是否iOS开启0
android_enabledtinyint(1)0是否android开启0
route_statustinyint(2)0路由状态 0:关闭 1:线上开启 2:测试需要0
created_byvarchar(32)
updated_byvarchar(32)更新人
ios_minvarchar(32)ios最小版本
ios_maxvarchar(32)ios最大版本
android_minvarchar(32)android最小版本
android_maxvarchar(32)android最大版本
del_flagtinyint(1)0是否删除0

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_custom_api

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_user

MySQL Table Design okayapi_appver_user_app_rel

TOP ↑