MySQL Create Table SQL
Table Structure: okayapi_opms_pms_expenses:/tablelist/okayapi_opms_pms_expenses.html
-- MySQL Table okayapi_opms_pms_expenses
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_expenses` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userid` bigint(20) NULL COMMENT '',
`amounts` varchar(8) NULL COMMENT '报销金额json',
`okayapi_opms_pms_expenses_types` varchar(200) NULL COMMENT '明细类型json',
`contents` varchar(1000) NULL COMMENT '明细json',
`total` varchar(8) NULL COMMENT '总金额',
`picture` varchar(100) NULL COMMENT '1同',
`result` tinyint(1) NULL COMMENT '1同意2拒绝',
`okayapi_opms_pms_expenses_status` tinyint(1) NULL DEFAULT '1' COMMENT '1草稿2正常发布',
`approverids` varchar(200) NULL COMMENT '审批人串',
`created` int(10) NULL COMMENT '',
`okayapi_opms_pms_expenses_changed` int(10) NULL COMMENT '',
KEY `userid` (`userid`),
KEY `amounts` (`amounts`),
KEY `okayapi_opms_pms_expenses_types` (`okayapi_opms_pms_expenses_types`),
KEY `contents` (`contents`),
KEY `total` (`total`),
KEY `picture` (`picture`),
KEY `result` (`result`),
KEY `okayapi_opms_pms_expenses_status` (`okayapi_opms_pms_expenses_status`),
KEY `approverids` (`approverids`),
KEY `created` (`created`),
KEY `okayapi_opms_pms_expenses_changed` (`okayapi_opms_pms_expenses_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-11 of 11 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
userid | bigint(20) | 是 | ||||
amounts | varchar(8) | 否 | 报销金额json | |||
okayapi_opms_pms_expenses_types | varchar(200) | 是 | 明细类型json | |||
contents | varchar(1000) | 是 | 明细json | |||
total | varchar(8) | 是 | 总金额 | |||
picture | varchar(100) | 是 | 1同 | |||
result | tinyint(1) | 是 | 1同意2拒绝 | |||
okayapi_opms_pms_expenses_status | tinyint(1) | 1 | 是 | 1草稿2正常发布 | 1 | |
approverids | varchar(200) | 是 | 审批人串 | |||
created | int(10) | 是 | ||||
okayapi_opms_pms_expenses_changed | int(10) | 是 |