MySQL Create Table SQL
Table Structure: okayapi_vhr_oplog:/tablelist/okayapi_vhr_oplog.html
-- MySQL Table okayapi_vhr_oplog
-- From: OkayAPI.com
CREATE TABLE `okayapi_vhr_oplog` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`addDate` date NULL COMMENT '添加日期',
`operate` varchar(255) NULL COMMENT '操作内容',
`hrid` int(11) NULL COMMENT '操作员ID',
KEY `addDate` (`addDate`),
KEY `operate` (`operate`),
KEY `hrid` (`hrid`),
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 |
---|---|---|---|---|---|---|
addDate | date | 是 | 添加日期 | |||
operate | varchar(255) | 是 | 操作内容 | |||
hrid | int(11) | 是 | 操作员ID | Normal Index |