mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-31 02:21:36 +00:00
Empty commit
This commit is contained in:
parent
3e3fdfb804
commit
f15bd3a769
@ -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',
|
||||
|
13
gazelle.sql
13
gazelle.sql
@ -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 '',
|
||||
|
Loading…
Reference in New Issue
Block a user