MySQL Create Table SQL
Table Structure: okayapi_landi_plan:/tablelist/okayapi_landi_plan.html
-- MySQL Table okayapi_landi_plan
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_plan` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_landi_plan_name` varchar(64) NULL COMMENT '',
`ctime` datetime NULL COMMENT '',
`money` double NULL COMMENT '',
`staff` varchar(64) NULL COMMENT '',
`okayapi_landi_plan_comment` varchar(64) NULL COMMENT '',
`sys_state` int(11) NULL DEFAULT '1' COMMENT '',
KEY `okayapi_landi_plan_name` (`okayapi_landi_plan_name`),
KEY `ctime` (`ctime`),
KEY `money` (`money`),
KEY `staff` (`staff`),
KEY `okayapi_landi_plan_comment` (`okayapi_landi_plan_comment`),
KEY `sys_state` (`sys_state`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-采购方案';
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 Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
okayapi_landi_plan_name | varchar(64) | 是 | ||||
ctime | datetime | 是 | ||||
money | double | 是 | ||||
staff | varchar(64) | 是 | ||||
okayapi_landi_plan_comment | varchar(64) | 是 | ||||
sys_state | int(11) | 1 | 是 | 1 |