+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_opms_pms_expenses_approver:/tablelist/okayapi_opms_pms_expenses_approver.html


-- MySQL Table okayapi_opms_pms_expenses_approver
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_expenses_approver` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `expenseid` bigint(20) NULL COMMENT '报销表ID',
    `userid` bigint(20) NULL COMMENT '审批人Userid',
    `summary` varchar(500) NULL COMMENT '说明',
    `okayapi_opms_pms_expenses_approver_status` tinyint(1) NULL COMMENT '1同意2拒绝',
    `created` int(10) NULL COMMENT '',
    `okayapi_opms_pms_expenses_approver_changed` int(10) NULL COMMENT '',
    KEY `expenseid` (`expenseid`),
    KEY `userid` (`userid`),
    KEY `summary` (`summary`),
    KEY `okayapi_opms_pms_expenses_approver_status` (`okayapi_opms_pms_expenses_approver_status`),
    KEY `created` (`created`),
    KEY `okayapi_opms_pms_expenses_approver_changed` (`okayapi_opms_pms_expenses_approver_changed`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-报销审批人表';

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


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
expenseidbigint(20)报销表ID
useridbigint(20)审批人Userid
summaryvarchar(500)说明
okayapi_opms_pms_expenses_approver_statustinyint(1)1同意2拒绝
createdint(10)
okayapi_opms_pms_expenses_approver_changedint(10)

Guess You Like

MySQL Table Design okayapi_opms_pms_albums

MySQL Table Design okayapi_opms_pms_albums_comment

MySQL Table Design okayapi_opms_pms_albums_laud

MySQL Table Design okayapi_opms_pms_businesstrips

MySQL Table Design okayapi_opms_pms_businesstrips_approver

MySQL Table Design okayapi_opms_pms_checkworks

MySQL Table Design okayapi_opms_pms_departs

MySQL Table Design okayapi_opms_pms_expenses

MySQL Table Design okayapi_opms_pms_goouts

MySQL Table Design okayapi_opms_pms_goouts_approver

MySQL Table Design okayapi_opms_pms_groups

MySQL Table Design okayapi_opms_pms_groups_permission

MySQL Table Design okayapi_opms_pms_groups_user

MySQL Table Design okayapi_opms_pms_knowledges

MySQL Table Design okayapi_opms_pms_knowledges_comment

MySQL Table Design okayapi_opms_pms_knowledges_laud

MySQL Table Design okayapi_opms_pms_knowledges_sort

MySQL Table Design okayapi_opms_pms_leaves

MySQL Table Design okayapi_opms_pms_leaves_approver

MySQL Table Design okayapi_opms_pms_messages

TOP ↑