MySQL Create Table SQL
Table Structure: okayapi_crm_gathersrecords:/tablelist/okayapi_crm_gathersrecords.html
-- MySQL Table okayapi_crm_gathersrecords
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_gathersrecords` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NULL COMMENT '标题',
`status` varchar(255) NULL COMMENT '状态',
`customer_id` int(11) NULL COMMENT '客户ID',
`summary` varchar(255) NULL COMMENT '摘要',
`deleted` tinyint(255) NULL COMMENT '删除标识:0未删除,1删除',
KEY `title` (`title`),
KEY `status` (`status`),
KEY `customer_id` (`customer_id`),
KEY `summary` (`summary`),
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-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | varchar(255) | 是 | 标题 | |||
status | varchar(255) | 是 | 状态 | |||
customer_id | int(11) | 是 | 客户ID | |||
summary | varchar(255) | 是 | 摘要 | |||
deleted | tinyint(255) | 是 | 删除标识:0未删除,1删除 |