MySQL Create Table SQL
Table Structure: okayapi_openant_user_online:/tablelist/okayapi_openant_user_online.html
-- MySQL Table okayapi_openant_user_online
-- From: OkayAPI.com
CREATE TABLE `okayapi_openant_user_online` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(40) NOT NULL COMMENT '',
`user_id` int(11) NOT NULL COMMENT '',
`token` varchar(128) NOT NULL COMMENT '',
`date_added` datetime NOT NULL COMMENT '',
KEY `ip` (`ip`),
KEY `user_id` (`user_id`),
KEY `token` (`token`),
KEY `date_added` (`date_added`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-在线用户';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
ip | varchar(40) | 否 | ||||
user_id | int(11) | 否 | ||||
token | varchar(128) | 否 | ||||
date_added | datetime | 否 |