CREATE TABLE `lq(ad_positions)4` (
`positionid` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`positionType` tinyint(4) NOT NULL COMMENT '广告类型',
`positionName` varchar(100) NOT NULL COMMENT '广告位置名称',
`positionWidth` int(11) NOT NULL COMMENT '建议宽度',
`positionHeight` int(11) NOT NULL COMMENT '建议高度',
`dateFlag` tinyint(4) NOT NULL COMMENT '有效状态',
`positionCode` varchar(20) DEFAULT NULL COMMENT '广告位置代码',
`apSort` int(11) NOT NULL COMMENT '排序号',
PRIMARY KEY (`positionid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='刘芹 广告位置表';