+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_crm_warehousesorder:/tablelist/okayapi_crm_warehousesorder.html


-- MySQL Table okayapi_crm_warehousesorder
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_warehousesorder` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `warehousesorder_num` varchar(255) NOT NULL COMMENT '入库单号',
    `purchaseorder_id` int(11) NOT NULL COMMENT '进货单ID',
    `status` varchar(255) NOT NULL COMMENT '状态',
    `amount` int(255) NOT NULL COMMENT '数量',
    `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT '删除标识:0未删除,1删除',
    KEY `warehousesorder_num` (`warehousesorder_num`),
    KEY `purchaseorder_id` (`purchaseorder_id`),
    KEY `status` (`status`),
    KEY `amount` (`amount`),
    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
warehousesorder_numvarchar(255)入库单号
purchaseorder_idint(11)进货单ID
statusvarchar(255)状态
amountint(255)数量
deletedtinyint(4)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_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 ↑