MySQL Create Table SQL
Table Structure: okayapi_saixs_ad_ad_site:/tablelist/okayapi_saixs_ad_ad_site.html
-- MySQL Table okayapi_saixs_ad_ad_site
-- From: OkayAPI.com
CREATE TABLE `okayapi_saixs_ad_ad_site` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ad_site_name` tinytext NULL COMMENT '广告位名称',
`ad_site_name_short` tinytext NULL COMMENT '',
`height` int(11) NULL DEFAULT '0' COMMENT '高度',
`width` int(11) NULL DEFAULT '0' COMMENT '宽度',
`site` int(11) NULL DEFAULT '0' COMMENT '站点:首页\房产等',
`sl` int(11) NULL DEFAULT '1' COMMENT '',
`shape` int(11) NULL DEFAULT '0' COMMENT '形式0为默认单体1为平行2为内置当调用数量不为1的时候需要选择',
`showsl` int(11) NULL DEFAULT '0' COMMENT '调用数量',
`clicks` int(11) NULL DEFAULT '0' COMMENT '点击率',
`ad_site_css` text NULL COMMENT '广告位css~~',
`ad_site_default` text NULL COMMENT '默认广告位代码',
`add_user` tinytext NULL COMMENT '',
KEY `ad_site_name` (`ad_site_name`),
KEY `ad_site_name_short` (`ad_site_name_short`),
KEY `height` (`height`),
KEY `width` (`width`),
KEY `site` (`site`),
KEY `sl` (`sl`),
KEY `shape` (`shape`),
KEY `showsl` (`showsl`),
KEY `clicks` (`clicks`),
KEY `ad_site_css` (`ad_site_css`),
KEY `ad_site_default` (`ad_site_default`),
KEY `add_user` (`add_user`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'saixs广告管理-广告站点';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-12 of 12 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
ad_site_name | tinytext | 是 | 广告位名称 | |||
ad_site_name_short | tinytext | 否 | ||||
height | int(11) | 0 | 是 | 高度 | 0 | |
width | int(11) | 0 | 是 | 宽度 | 0 | |
site | int(11) | 0 | 是 | 站点:首页\房产等 | 0 | |
sl | int(11) | 1 | 是 | 1 | ||
shape | int(11) | 0 | 是 | 形式0为默认单体1为平行2为内置当调用数量不为1的时候需要选择 | 0 | |
showsl | int(11) | 0 | 是 | 调用数量 | 0 | |
clicks | int(11) | 0 | 是 | 点击率 | 0 | |
ad_site_css | text | 是 | 广告位css~~ | |||
ad_site_default | text | 是 | 默认广告位代码 | |||
add_user | tinytext | 是 |