MySQL Create Table SQL
Table Structure: okayapi_crm_checks:/tablelist/okayapi_crm_checks.html
-- MySQL Table okayapi_crm_checks
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_checks` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NULL COMMENT '标题',
`status` varchar(255) NULL COMMENT '状态',
`warehouse_id` int(11) NULL COMMENT '仓库',
KEY `title` (`title`),
KEY `status` (`status`),
KEY `warehouse_id` (`warehouse_id`),
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-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | varchar(255) | 是 | 标题 | |||
status | varchar(255) | 是 | 状态 | |||
warehouse_id | int(11) | 是 | 仓库 |