MySQL Create Table SQL
Table Structure: okayapi_crm_loginhistory:/tablelist/okayapi_crm_loginhistory.html
-- MySQL Table okayapi_crm_loginhistory
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_loginhistory` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NULL COMMENT '',
`message` varchar(255) NULL COMMENT '',
KEY `user_id` (`user_id`),
KEY `message` (`message`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-登入历史表';
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 |
---|---|---|---|---|---|---|
user_id | int(11) | 是 | ||||
message | varchar(255) | 是 |