+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_appver_apk_download_record:/tablelist/okayapi_appver_apk_download_record.html


-- MySQL Table okayapi_appver_apk_download_record
-- From: OkayAPI.com
CREATE TABLE `okayapi_appver_apk_download_record` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `app_id` int(11) NOT NULL DEFAULT '0' COMMENT 'AppId',
    `version_id` int(11) NOT NULL DEFAULT '0' COMMENT '版本ID',
    `channel_id` int(11) NOT NULL DEFAULT '0' COMMENT '渠道ID',
    `apk_id` int(11) NOT NULL DEFAULT '0' COMMENT 'apkId',
    `download_num` int(11) NOT NULL DEFAULT '0' COMMENT 'apk下载量',
    `download_date` date NOT NULL COMMENT '',
    KEY `app_id` (`app_id`),
    KEY `version_id` (`version_id`),
    KEY `channel_id` (`channel_id`),
    KEY `apk_id` (`apk_id`),
    KEY `download_num` (`download_num`),
    KEY `download_date` (`download_date`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'App版本管理-APK下载纪录';

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


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
app_idint(11)0AppIdNormal Index0
version_idint(11)0版本ID0
channel_idint(11)0渠道ID0
apk_idint(11)0apkIdNormal Index0
download_numint(11)0apk下载量0
download_datedateNormal Index

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

MySQL Table Design okayapi_appver_user

MySQL Table Design okayapi_appver_user_app_rel

TOP ↑