MySQL Create Table SQL
Table Structure: okayapi_vhr_msgcontent:/tablelist/okayapi_vhr_msgcontent.html
-- MySQL Table okayapi_vhr_msgcontent
-- From: OkayAPI.com
CREATE TABLE `okayapi_vhr_msgcontent` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(64) NOT NULL COMMENT '',
`message` varchar(255) NOT NULL COMMENT '',
`createDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '',
KEY `title` (`title`),
KEY `message` (`message`),
KEY `createDate` (`createDate`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '人力资源-消息内容';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | varchar(64) | 是 | ||||
message | varchar(255) | 是 | ||||
createDate | timestamp | CURRENT_TIMESTAMP | 否 | CURRENT_TIMESTAMP |