MySQL Create Table SQL
Table Structure: okayapi_log_show_appname:/tablelist/okayapi_log_show_appname.html
-- MySQL Table okayapi_log_show_appname
-- From: OkayAPI.com
CREATE TABLE `okayapi_log_show_appname` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`appname` varchar(232) NULL COMMENT '',
`create_time` varchar(32) NULL COMMENT '',
KEY `appname` (`appname`),
KEY `create_time` (`create_time`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'k8s管理-应用名称';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
appname | varchar(232) | 是 | Unique Index | |||
create_time | varchar(32) | 是 |