+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_crm_gathers:/tablelist/okayapi_crm_gathers.html


-- MySQL Table okayapi_crm_gathers
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_gathers` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `gathers_num` varchar(255) NULL COMMENT '应收款编号',
    `customer_id` int(11) NULL COMMENT '客户ID',
    `saleorder_id` int(11) NULL COMMENT '销售单号',
    `invoice_id` int(11) NULL COMMENT '发货单',
    `amount` decimal(10,0) NULL COMMENT '应收金额',
    `gather_date` datetime NULL COMMENT '应收日期',
    `memo` text NULL COMMENT '摘要',
    `deleted` tinyint(255) NULL COMMENT '删除标识:0未删除,1删除',
    KEY `gathers_num` (`gathers_num`),
    KEY `customer_id` (`customer_id`),
    KEY `saleorder_id` (`saleorder_id`),
    KEY `invoice_id` (`invoice_id`),
    KEY `amount` (`amount`),
    KEY `gather_date` (`gather_date`),
    KEY `memo` (`memo`),
    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-8 of 8 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
gathers_numvarchar(255)应收款编号
customer_idint(11)客户ID
saleorder_idint(11)销售单号
invoice_idint(11)发货单
amountdecimal(10,0)应收金额
gather_datedatetime应收日期
memotext摘要
deletedtinyint(255)删除标识:0未删除,1删除

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_gathersrecords

TOP ↑