+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zheng_pay_vendor:/tablelist/okayapi_zheng_pay_vendor.html


-- MySQL Table okayapi_zheng_pay_vendor
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_pay_vendor` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_zheng_pay_vendor_name` varchar(20) NULL COMMENT '',
    `appid` varchar(50) NULL COMMENT '',
    `appsecret` varchar(150) NULL COMMENT '',
    `config` varchar(1000) NULL COMMENT '',
    KEY `okayapi_zheng_pay_vendor_name` (`okayapi_zheng_pay_vendor_name`),
    KEY `appid` (`appid`),
    KEY `appsecret` (`appsecret`),
    KEY `config` (`config`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'zheng敏捷开发-第三方支付标识表';

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


MySQL database table structure design

Displaying 1-4 of 4 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
okayapi_zheng_pay_vendor_namevarchar(20)
appidvarchar(50)
appsecretvarchar(150)
configvarchar(1000)

Guess You Like

MySQL Table Design okayapi_logs

MySQL Table Design okayapi_app_version

MySQL Table Design okayapi_tea

MySQL Table Design okayapi_tea_swiper

MySQL Table Design okayapi_tea_moment

MySQL Table Design okayapi_tea_order

MySQL Table Design okayapi_tea_user

MySQL Table Design okayapi_tea_shopcar

MySQL Table Design okayapi_zheng_cms_article

MySQL Table Design okayapi_zheng_cms_article_category

MySQL Table Design okayapi_zheng_cms_article_tag

MySQL Table Design okayapi_zheng_cms_category

MySQL Table Design okayapi_zheng_cms_comment

MySQL Table Design okayapi_zheng_cms_page

MySQL Table Design okayapi_zheng_cms_setting

MySQL Table Design okayapi_zheng_cms_system

MySQL Table Design okayapi_zheng_cms_tag

MySQL Table Design okayapi_zheng_cms_topic

MySQL Table Design okayapi_zheng_pay_in_order

MySQL Table Design okayapi_zheng_pay_in_order_detail

TOP ↑