This repository was archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge v2.1 to master
- Loading branch information
Showing
64 changed files
with
2,249 additions
and
9,420 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
SET FOREIGN_KEY_CHECKS=0; | ||
|
||
-- ---------------------------- | ||
-- Table structure for bing | ||
-- ---------------------------- | ||
DROP TABLE IF EXISTS `bing`; | ||
CREATE TABLE `bing` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`title` varchar(100) DEFAULT NULL, | ||
`attribute` varchar(100) DEFAULT NULL, | ||
`description` varchar(500) DEFAULT NULL, | ||
`copyright` varchar(500) NOT NULL DEFAULT '0', | ||
`copyrightlink` varchar(500) NOT NULL DEFAULT '0', | ||
`startdate` varchar(50) NOT NULL DEFAULT '0', | ||
`enddate` varchar(50) NOT NULL DEFAULT '0', | ||
`fullstartdate` varchar(50) NOT NULL DEFAULT '0', | ||
`url` varchar(500) NOT NULL DEFAULT '0', | ||
`urlbase` varchar(500) NOT NULL DEFAULT '0', | ||
`hsh` varchar(500) NOT NULL DEFAULT '0', | ||
`qiniu_url` varchar(100) DEFAULT NULL, | ||
`longitude` varchar(500) DEFAULT NULL COMMENT '经度', | ||
`latitude` varchar(500) DEFAULT NULL COMMENT '纬度', | ||
`city` varchar(500) DEFAULT NULL COMMENT '城市', | ||
`country` varchar(255) DEFAULT NULL COMMENT '国家', | ||
`continent` varchar(255) DEFAULT NULL COMMENT '洲/大陆', | ||
`thumbnail_pic` varchar(255) DEFAULT NULL COMMENT '缩略图', | ||
`bmiddle_pic` varchar(255) DEFAULT NULL COMMENT '中等大小图', | ||
`original_pic` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL COMMENT '原图', | ||
`weibo` int(1) unsigned zerofill NOT NULL DEFAULT '0' COMMENT '是否发送微博,默认0', | ||
`likes` int(11) unsigned DEFAULT '0' COMMENT '喜欢量', | ||
`views` int(11) unsigned DEFAULT '0' COMMENT '展现量', | ||
`downloads` int(11) unsigned DEFAULT '0' COMMENT '下载量', | ||
PRIMARY KEY (`id`), | ||
KEY `id-title-attribute-qiniu_url` (`id`,`title`,`attribute`,`qiniu_url`) USING BTREE | ||
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
SET FOREIGN_KEY_CHECKS=0; | ||
|
||
-- ---------------------------- | ||
-- Table structure for bing_session | ||
-- ---------------------------- | ||
DROP TABLE IF EXISTS `bing_session`; | ||
CREATE TABLE `bing_session` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`token` varchar(255) NOT NULL, | ||
`expires_in` int(200) NOT NULL COMMENT '过期时间', | ||
`insertdate` int(200) NOT NULL COMMENT '插入时间', | ||
`uid` varchar(200) NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
Oops, something went wrong.