MySQL Create Table SQL
Table Structure: okayapi_crm_vnotes:/tablelist/okayapi_crm_vnotes.html
-- MySQL Table okayapi_crm_vnotes
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_vnotes` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL COMMENT '主题',
`vendors_id` int(11) NOT NULL COMMENT '供应商ID',
`contact_time` datetime NOT NULL COMMENT '联系时间',
`contact_type` varchar(255) NOT NULL COMMENT '联系类型',
`content` text NOT NULL COMMENT '联系内容',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT '删除标识:0未删除,1删除',
KEY `title` (`title`),
KEY `vendors_id` (`vendors_id`),
KEY `contact_time` (`contact_time`),
KEY `contact_type` (`contact_type`),
KEY `content` (`content`),
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-6 of 6 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | varchar(255) | 是 | 主题 | |||
vendors_id | int(11) | 是 | 供应商ID | |||
contact_time | datetime | 是 | 联系时间 | |||
contact_type | varchar(255) | 是 | 联系类型 | |||
content | text | 是 | 联系内容 | |||
deleted | tinyint(4) | 0 | 否 | 删除标识:0未删除,1删除 | 0 |