+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_appver_channel:/tablelist/okayapi_appver_channel.html


-- MySQL Table okayapi_appver_channel
-- From: OkayAPI.com
CREATE TABLE `okayapi_appver_channel` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `app_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联的APPID',
    `channel_name` varchar(255) NOT NULL COMMENT '渠道名称',
    `channel_code` varchar(255) NOT NULL COMMENT '渠道码',
    `channel_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '渠道类型 (1:应用市场 2:推广渠道)',
    `created_by` varchar(64) NOT NULL COMMENT '创建人',
    `del_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否被删除',
    `updated_by` varchar(32) NOT NULL COMMENT '更新人',
    `channel_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:正常 2:废弃 3:停用 ',
    KEY `app_id` (`app_id`),
    KEY `channel_name` (`channel_name`),
    KEY `channel_code` (`channel_code`),
    KEY `channel_type` (`channel_type`),
    KEY `created_by` (`created_by`),
    KEY `del_flag` (`del_flag`),
    KEY `updated_by` (`updated_by`),
    KEY `channel_status` (`channel_status`),
    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-8 of 8 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
app_idint(11)0关联的APPIDNormal Index0
channel_namevarchar(255)渠道名称
channel_codevarchar(255)渠道码
channel_typetinyint(2)1渠道类型 (1:应用市场 2:推广渠道)1
created_byvarchar(64)创建人
del_flagtinyint(1)0是否被删除0
updated_byvarchar(32)更新人
channel_statustinyint(1)11:正常 2:废弃 3:停用 1

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_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_rn_route

MySQL Table Design okayapi_appver_user

MySQL Table Design okayapi_appver_user_app_rel

TOP ↑