mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 20:21:37 +00:00
Empty commit
This commit is contained in:
parent
be61cf5f7c
commit
ca98a86b12
@ -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,
|
||||
|
@ -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');
|
||||
|
Loading…
Reference in New Issue
Block a user