Empty commit

This commit is contained in:
Git 2011-09-12 08:00:12 +00:00
parent be61cf5f7c
commit ca98a86b12
2 changed files with 9 additions and 3 deletions

View File

@ -160,6 +160,7 @@ CREATE TABLE `collages_torrents` (
`GroupID` int(10) NOT NULL,
`UserID` int(10) NOT NULL,
`Sort` int(10) NOT NULL DEFAULT '0',
`AddedOn` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`CollageID`,`GroupID`),
KEY `UserID` (`UserID`),
KEY `Sort` (`Sort`)
@ -993,6 +994,13 @@ CREATE TABLE `torrents_tags_votes` (
PRIMARY KEY (`GroupID`,`TagID`,`UserID`,`Way`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `users_collage_subs` (
`UserID` int(10) NOT NULL,
`CollageID` int(10) NOT NULL,
`LastVisit` datetime DEFAULT NULL,
PRIMARY KEY (`UserID`,`CollageID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `users_downloads` (
`UserID` int(10) NOT NULL,
`TorrentID` int(1) NOT NULL,

View File

@ -52,9 +52,7 @@
case 'catchup':
require('catchup.php');
break;
case 'earlybird':
require('earlybird.php');
break;
default:
//You trying to mess with me query string? To the home page with you!
header('Location: index.php');