mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-02-07 13:59:07 +00:00
Empty commit
This commit is contained in:
parent
3e3fdfb804
commit
f15bd3a769
@ -18,10 +18,11 @@ class UserAgent {
|
|||||||
'Blackberry' => 'BlackBerry Browser',
|
'Blackberry' => 'BlackBerry Browser',
|
||||||
//Big names
|
//Big names
|
||||||
'Firefox' => 'Firefox',
|
'Firefox' => 'Firefox',
|
||||||
|
'OPR' => 'Opera Blink', # Opera 15+ (the version running Blink)
|
||||||
|
'Opera' => 'Opera',
|
||||||
'Chrome' => 'Chrome',
|
'Chrome' => 'Chrome',
|
||||||
'Safari' => 'Safari',
|
'Safari' => 'Safari',
|
||||||
'Opera' => 'Opera',
|
//Put Chrome Frame above IE
|
||||||
//Put chrome frame above IE
|
|
||||||
'chromeframe' => 'Chrome Frame',
|
'chromeframe' => 'Chrome Frame',
|
||||||
'x-clock' => 'Chrome Frame',
|
'x-clock' => 'Chrome Frame',
|
||||||
'MSIE' => 'Internet Explorer',
|
'MSIE' => 'Internet Explorer',
|
||||||
|
13
gazelle.sql
13
gazelle.sql
@ -283,6 +283,13 @@ CREATE TABLE `cover_art` (
|
|||||||
UNIQUE KEY `GroupID` (`GroupID`,`Image`)
|
UNIQUE KEY `GroupID` (`GroupID`,`Image`)
|
||||||
) ENGINE=InnoDB CHARSET utf8;
|
) ENGINE=InnoDB CHARSET utf8;
|
||||||
|
|
||||||
|
CREATE TABLE `currency_conversion_rates` (
|
||||||
|
`Currency` char(3) NOT NULL,
|
||||||
|
`Rate` decimal(9,4) DEFAULT NULL,
|
||||||
|
`Time` datetime DEFAULT NULL,
|
||||||
|
PRIMARY KEY (`Currency`)
|
||||||
|
) ENGINE=InnoDB CHARSET utf8;
|
||||||
|
|
||||||
CREATE TABLE `do_not_upload` (
|
CREATE TABLE `do_not_upload` (
|
||||||
`ID` int(10) NOT NULL AUTO_INCREMENT,
|
`ID` int(10) NOT NULL AUTO_INCREMENT,
|
||||||
`Name` varchar(255) NOT NULL,
|
`Name` varchar(255) NOT NULL,
|
||||||
@ -310,6 +317,12 @@ CREATE TABLE `donations` (
|
|||||||
KEY `Amount` (`Amount`)
|
KEY `Amount` (`Amount`)
|
||||||
) ENGINE=InnoDB CHARSET utf8;
|
) ENGINE=InnoDB CHARSET utf8;
|
||||||
|
|
||||||
|
CREATE TABLE `donations_bitcoin` (
|
||||||
|
`BitcoinAddress` varchar(34) NOT NULL,
|
||||||
|
`Amount` decimal(24,8) NOT NULL,
|
||||||
|
KEY `BitcoinAddress` (`BitcoinAddress`,`Amount`)
|
||||||
|
) ENGINE=InnoDB CHARSET utf8;
|
||||||
|
|
||||||
CREATE TABLE `donor_forum_usernames` (
|
CREATE TABLE `donor_forum_usernames` (
|
||||||
`UserID` int(10) NOT NULL DEFAULT '0',
|
`UserID` int(10) NOT NULL DEFAULT '0',
|
||||||
`Prefix` varchar(30) NOT NULL DEFAULT '',
|
`Prefix` varchar(30) NOT NULL DEFAULT '',
|
||||||
|
Loading…
Reference in New Issue
Block a user