MySQL Create Table SQL
Table Structure: okayapi_guanggaobao_demand_information:/tablelist/okayapi_guanggaobao_demand_information.html
-- MySQL Table okayapi_guanggaobao_demand_information
-- From: OkayAPI.com
CREATE TABLE `okayapi_guanggaobao_demand_information` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(50) NULL COMMENT '标题',
`content` varchar(500) NULL COMMENT '内容',
`user_id` int(11) NULL COMMENT '用户编码(外键)',
`tender_time` int(11) NULL COMMENT '竞价时间',
`tender_winner_id` int(11) NULL COMMENT '',
`tender_type` int(5) NULL COMMENT '',
`close_time` int(11) NULL COMMENT '结束时间',
`create_time` int(11) NULL COMMENT '创建时间',
`delete_time` int(11) NULL COMMENT '删除时间',
`okayapi_guanggaobao_demand_information_status` int(2) NULL COMMENT '状态值',
`bid_type` int(5) NULL COMMENT '竞价类型',
KEY `title` (`title`),
KEY `content` (`content`),
KEY `user_id` (`user_id`),
KEY `tender_time` (`tender_time`),
KEY `tender_winner_id` (`tender_winner_id`),
KEY `tender_type` (`tender_type`),
KEY `close_time` (`close_time`),
KEY `create_time` (`create_time`),
KEY `delete_time` (`delete_time`),
KEY `okayapi_guanggaobao_demand_information_status` (`okayapi_guanggaobao_demand_information_status`),
KEY `bid_type` (`bid_type`),
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-11 of 11 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | varchar(50) | 否 | 标题 | |||
content | varchar(500) | 否 | 内容 | |||
user_id | int(11) | 否 | 用户编码(外键) | |||
tender_time | int(11) | 是 | 竞价时间 | |||
tender_winner_id | int(11) | 是 | ||||
tender_type | int(5) | 是 | ||||
close_time | int(11) | 是 | 结束时间 | |||
create_time | int(11) | 是 | 创建时间 | |||
delete_time | int(11) | 是 | 删除时间 | |||
okayapi_guanggaobao_demand_information_status | int(2) | 是 | 状态值 | |||
bid_type | int(5) | 是 | 竞价类型 |