2 Star 0 Fork 0

playboy / PHP_Mysql_votes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vote.sql 476 Bytes
一键复制 编辑 原始数据 按行查看 历史
playboy 提交于 2014-02-28 16:09 . first commit
CREATE TABLE IF NOT EXISTS `votes` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`likes` int(10) NOT NULL DEFAULT '0',
`unlikes` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `votes` (`id`, `likes`, `unlikes`) VALUES
(1, 30, 10);
CREATE TABLE IF NOT EXISTS `votes_ip` (
`id` int(10) NOT NULL,
`vid` int(10) NOT NULL,
`ip` varchar(40) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
PHP
1
https://gitee.com/erdong/PHP_Mysql_votes.git
git@gitee.com:erdong/PHP_Mysql_votes.git
erdong
PHP_Mysql_votes
PHP_Mysql_votes
master

搜索帮助