MySQL Create Table SQL
Table Structure: okayapi_crm_faqcategory:/tablelist/okayapi_crm_faqcategory.html
-- MySQL Table okayapi_crm_faqcategory
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_faqcategory` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`faqcategoryname` varchar(255) NULL COMMENT '分类名称',
KEY `faqcategoryname` (`faqcategoryname`),
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 |
---|---|---|---|---|---|---|
faqcategoryname | varchar(255) | 是 | 分类名称 |