+ Use This Table All Design

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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
summarytext今日总结
tomorrow_plantext明日计划
createdatedate创建日期
user_idint(11)用户ID
deletedint(11)0删除标识:0未删除,1删除0

Guess You Like

MySQL Table Design okayapi_crm_accountrecordss

MySQL Table Design okayapi_crm_announcements

MySQL Table Design okayapi_crm_caigoutuihuos

MySQL Table Design okayapi_crm_campaigns

MySQL Table Design okayapi_crm_charges

MySQL Table Design okayapi_crm_chargesrecords

MySQL Table Design okayapi_crm_checks

MySQL Table Design okayapi_crm_competitor

MySQL Table Design okayapi_crm_complaints

MySQL Table Design okayapi_crm_contacter

MySQL Table Design okayapi_crm_contactlog

MySQL Table Design okayapi_crm_customer

MySQL Table Design okayapi_crm_deliverys

MySQL Table Design okayapi_crm_emailgroup

MySQL Table Design okayapi_crm_emailgroupinfo

MySQL Table Design okayapi_crm_expenses

MySQL Table Design okayapi_crm_faq

MySQL Table Design okayapi_crm_faqcategory

MySQL Table Design okayapi_crm_gathers

MySQL Table Design okayapi_crm_gathersrecords

TOP ↑