Empty commit

This commit is contained in:
Git 2013-08-29 08:00:48 +00:00
parent 3e3fdfb804
commit f15bd3a769
2 changed files with 16 additions and 2 deletions

View File

@ -18,10 +18,11 @@ class UserAgent {
'Blackberry' => 'BlackBerry Browser',
//Big names
'Firefox' => 'Firefox',
'OPR' => 'Opera Blink', # Opera 15+ (the version running Blink)
'Opera' => 'Opera',
'Chrome' => 'Chrome',
'Safari' => 'Safari',
'Opera' => 'Opera',
//Put chrome frame above IE
//Put Chrome Frame above IE
'chromeframe' => 'Chrome Frame',
'x-clock' => 'Chrome Frame',
'MSIE' => 'Internet Explorer',

View File

@ -283,6 +283,13 @@ CREATE TABLE `cover_art` (
UNIQUE KEY `GroupID` (`GroupID`,`Image`)
) 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` (
`ID` int(10) NOT NULL AUTO_INCREMENT,
`Name` varchar(255) NOT NULL,
@ -310,6 +317,12 @@ CREATE TABLE `donations` (
KEY `Amount` (`Amount`)
) 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` (
`UserID` int(10) NOT NULL DEFAULT '0',
`Prefix` varchar(30) NOT NULL DEFAULT '',