MySQL Create Table SQL
Table Structure: okayapi_crm_dailylogs:/tablelist/okayapi_crm_dailylogs.html
-- MySQL Table okayapi_crm_dailylogs
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_dailylogs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`summary` text NOT NULL COMMENT '今日总结',
`tomorrow_plan` text NOT NULL COMMENT '明日计划',
`createdate` date NOT NULL COMMENT '创建日期',
`user_id` int(11) NOT NULL COMMENT '用户ID',
`deleted` int(11) NOT NULL DEFAULT '0' COMMENT '删除标识:0未删除,1删除',
KEY `summary` (`summary`),
KEY `tomorrow_plan` (`tomorrow_plan`),
KEY `createdate` (`createdate`),
KEY `user_id` (`user_id`),
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 |
---|---|---|---|---|---|---|
summary | text | 是 | 今日总结 | |||
tomorrow_plan | text | 是 | 明日计划 | |||
createdate | date | 否 | 创建日期 | |||
user_id | int(11) | 是 | 用户ID | |||
deleted | int(11) | 0 | 否 | 删除标识:0未删除,1删除 | 0 |