MySQL Create Table SQL
Table Structure: okayapi_dberp_position:/tablelist/okayapi_dberp_position.html
-- MySQL Table okayapi_dberp_position
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_position` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`position_sn` varchar(30) NOT NULL COMMENT '',
`warehouse_id` int(11) NOT NULL COMMENT '',
`admin_id` int(11) NOT NULL COMMENT '',
KEY `position_sn` (`position_sn`),
KEY `warehouse_id` (`warehouse_id`),
KEY `admin_id` (`admin_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'DBErp进销存-仓库仓位';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
position_sn | varchar(30) | 否 | ||||
warehouse_id | int(11) | 否 | ||||
admin_id | int(11) | 否 |