+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_dberp_app:/tablelist/okayapi_dberp_app.html


-- MySQL Table okayapi_dberp_app
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_app` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `app_name` varchar(100) NOT NULL COMMENT '',
    `app_access_id` varchar(30) NOT NULL COMMENT '',
    `app_access_secret` varchar(50) NOT NULL COMMENT '',
    `app_url` varchar(100) NOT NULL COMMENT '',
    `app_url_port` varchar(10) NOT NULL DEFAULT '80' COMMENT '',
    `app_type` varchar(20) NOT NULL COMMENT '',
    `app_goods_bind_type` varchar(20) NOT NULL COMMENT '商品绑定类型',
    `app_goods_bind` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否启用商品绑定',
    `app_state` tinyint(2) NOT NULL DEFAULT '1' COMMENT '',
    `app_add_time` int(10) NOT NULL COMMENT '',
    KEY `app_name` (`app_name`),
    KEY `app_access_id` (`app_access_id`),
    KEY `app_access_secret` (`app_access_secret`),
    KEY `app_url` (`app_url`),
    KEY `app_url_port` (`app_url_port`),
    KEY `app_type` (`app_type`),
    KEY `app_goods_bind_type` (`app_goods_bind_type`),
    KEY `app_goods_bind` (`app_goods_bind`),
    KEY `app_state` (`app_state`),
    KEY `app_add_time` (`app_add_time`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'DBErp进销存-绑定电商系统表';

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


MySQL database table structure design

Displaying 1-10 of 10 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
app_namevarchar(100)
app_access_idvarchar(30)
app_access_secretvarchar(50)
app_urlvarchar(100)
app_url_portvarchar(10)8080
app_typevarchar(20)
app_goods_bind_typevarchar(20)商品绑定类型
app_goods_bindtinyint(1)0是否启用商品绑定0
app_statetinyint(2)11
app_add_timeint(10)

Guess You Like

MySQL Table Design okayapi_smpss_admin

MySQL Table Design okayapi_smpss_category

MySQL Table Design okayapi_smpss_goods

MySQL Table Design okayapi_smpss_group

MySQL Table Design okayapi_smpss_log

MySQL Table Design okayapi_smpss_mbgroup

MySQL Table Design okayapi_smpss_member

MySQL Table Design okayapi_smpss_purchase

MySQL Table Design okayapi_smpss_region

MySQL Table Design okayapi_smpss_sales

MySQL Table Design okayapi_smpss_system

MySQL Table Design okayapi_smpss_tempsales

MySQL Table Design okayapi_dberp_accounts_receivable

MySQL Table Design okayapi_dberp_accounts_receivable_log

MySQL Table Design okayapi_dberp_admin

MySQL Table Design okayapi_dberp_admin_group

MySQL Table Design okayapi_dberp_brand

MySQL Table Design okayapi_dberp_customer

MySQL Table Design okayapi_dberp_customer_category

MySQL Table Design okayapi_dberp_finance_payable

TOP ↑