+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_vhr_position:/tablelist/okayapi_vhr_position.html


-- MySQL Table okayapi_vhr_position
-- From: OkayAPI.com
CREATE TABLE `okayapi_vhr_position` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `name` varchar(32) NULL COMMENT '职位',
    `createDate` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '',
    `enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
    KEY `name` (`name`),
    KEY `createDate` (`createDate`),
    KEY `enabled` (`enabled`),
    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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
namevarchar(32)职位Unique Index
createDatetimestampCURRENT_TIMESTAMPCURRENT_TIMESTAMP
enabledtinyint(1)11

Guess You Like

MySQL Table Design okayapi_vhr_adjustsalary

MySQL Table Design okayapi_vhr_appraise

MySQL Table Design okayapi_vhr_department

MySQL Table Design okayapi_vhr_employee

MySQL Table Design okayapi_vhr_employeeec

MySQL Table Design okayapi_vhr_employeeremove

MySQL Table Design okayapi_vhr_employeetrain

MySQL Table Design okayapi_vhr_empsalary

MySQL Table Design okayapi_vhr_hr

MySQL Table Design okayapi_vhr_hr_role

MySQL Table Design okayapi_vhr_joblevel

MySQL Table Design okayapi_vhr_menu

MySQL Table Design okayapi_vhr_menu_role

MySQL Table Design okayapi_vhr_msgcontent

MySQL Table Design okayapi_vhr_nation

MySQL Table Design okayapi_vhr_oplog

MySQL Table Design okayapi_vhr_politicsstatus

MySQL Table Design okayapi_vhr_role

MySQL Table Design okayapi_vhr_salary

MySQL Table Design okayapi_vhr_sysmsg

TOP ↑