MySQL Create Table SQL
Table Structure: okayapi_crm_expenses:/tablelist/okayapi_crm_expenses.html
-- MySQL Table okayapi_crm_expenses
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_expenses` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`expenses_num` varchar(255) NULL COMMENT '费用编号',
KEY `expenses_num` (`expenses_num`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-费用报销';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-1 of 1 result.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
expenses_num | varchar(255) | 是 | 费用编号 |