MySQL Create Table SQL
Table Structure: okayapi_crm_productcategory:/tablelist/okayapi_crm_productcategory.html
-- MySQL Table okayapi_crm_productcategory
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_productcategory` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`productcategoryname` varchar(255) NOT NULL COMMENT '分类名称',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT '删除标识,0-未删除,1-删除',
KEY `productcategoryname` (`productcategoryname`),
KEY `deleted` (`deleted`),
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-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
productcategoryname | varchar(255) | 是 | 分类名称 | |||
deleted | tinyint(4) | 0 | 否 | 删除标识,0-未删除,1-删除 | 0 |