MySQL Create Table SQL
Table Structure: okayapi_openant_bbs_discuss:/tablelist/okayapi_openant_bbs_discuss.html
-- MySQL Table okayapi_openant_bbs_discuss
-- From: OkayAPI.com
CREATE TABLE `okayapi_openant_bbs_discuss` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`discuss_id` int(11) NOT NULL COMMENT '',
`posting_id` int(11) NOT NULL COMMENT '',
`replies_id` int(11) NOT NULL COMMENT '',
`user_id` int(11) NOT NULL COMMENT '',
`is_view` tinyint(1) NOT NULL COMMENT '',
`ip` varchar(35) NOT NULL COMMENT '',
`agent` varchar(255) NOT NULL COMMENT '',
`date_added` datetime NOT NULL COMMENT '',
KEY `discuss_id` (`discuss_id`),
KEY `posting_id` (`posting_id`),
KEY `replies_id` (`replies_id`),
KEY `user_id` (`user_id`),
KEY `is_view` (`is_view`),
KEY `ip` (`ip`),
KEY `agent` (`agent`),
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-8 of 8 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
discuss_id | int(11) | 否 | ||||
posting_id | int(11) | 否 | ||||
replies_id | int(11) | 否 | ||||
user_id | int(11) | 否 | ||||
is_view | tinyint(1) | 否 | ||||
ip | varchar(35) | 否 | ||||
agent | varchar(255) | 否 | ||||
date_added | datetime | 否 |