+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_crm_deliverys:/tablelist/okayapi_crm_deliverys.html


-- MySQL Table okayapi_crm_deliverys
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_deliverys` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `deliverys_num` varchar(255) NULL COMMENT '出库单号',
    `status` varchar(255) NULL COMMENT '状态',
    `salesorder_id` int(11) NULL COMMENT '合同订单号',
    `invoice_id` int(11) NULL COMMENT '发货单ID',
    `deliverystime` datetime NULL COMMENT '出库时间',
    `deleted` tinyint(255) NULL COMMENT '删除标识',
    KEY `deliverys_num` (`deliverys_num`),
    KEY `status` (`status`),
    KEY `salesorder_id` (`salesorder_id`),
    KEY `invoice_id` (`invoice_id`),
    KEY `deliverystime` (`deliverystime`),
    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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
deliverys_numvarchar(255)出库单号
statusvarchar(255)状态
salesorder_idint(11)合同订单号
invoice_idint(11)发货单ID
deliverystimedatetime出库时间
deletedtinyint(255)删除标识

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_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 ↑