MySQL Create Table SQL
Table Structure: okayapi_box_session:/tablelist/okayapi_box_session.html
-- MySQL Table okayapi_box_session
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_session` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`content` text NULL COMMENT '',
`modified_at` int(11) NULL COMMENT '',
KEY `content` (`content`),
KEY `modified_at` (`modified_at`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-会话';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
content | text | 是 | ||||
modified_at | int(11) | 是 |