MySQL Create Table SQL
Table Structure: okayapi_dberp_unit:/tablelist/okayapi_dberp_unit.html
-- MySQL Table okayapi_dberp_unit
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_unit` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`unit_name` varchar(50) NOT NULL COMMENT '',
`unit_sort` int(11) NOT NULL DEFAULT '255' COMMENT '',
`admin_id` int(11) NOT NULL COMMENT '',
KEY `unit_name` (`unit_name`),
KEY `unit_sort` (`unit_sort`),
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 |
---|---|---|---|---|---|---|
unit_name | varchar(50) | 否 | ||||
unit_sort | int(11) | 255 | 否 | 255 | ||
admin_id | int(11) | 否 |