+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_crm_quotes:/tablelist/okayapi_crm_quotes.html


-- MySQL Table okayapi_crm_quotes
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_quotes` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `quotes_number` varchar(255) NULL COMMENT '报价单号',
    `stage` varchar(255) NULL COMMENT '报价阶段',
    `potentials_id` int(255) NULL COMMENT '销售机会关联',
    `total` varchar(255) NULL COMMENT '总计',
    `quotetime` datetime NULL COMMENT '报价日期',
    `deleted` tinyint(4) NULL DEFAULT '0' COMMENT '删除标识,1是删除,0未删除',
    `description` int(11) NULL COMMENT '描述',
    KEY `quotes_number` (`quotes_number`),
    KEY `stage` (`stage`),
    KEY `potentials_id` (`potentials_id`),
    KEY `total` (`total`),
    KEY `quotetime` (`quotetime`),
    KEY `deleted` (`deleted`),
    KEY `description` (`description`),
    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-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
quotes_numbervarchar(255)报价单号
stagevarchar(255)报价阶段
potentials_idint(255)销售机会关联
totalvarchar(255)总计
quotetimedatetime报价日期
deletedtinyint(4)0删除标识,1是删除,0未删除0
descriptionint(11)描述

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_dailylogs

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

TOP ↑