-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 20, 2010 at 01:39 PM
-- Server version: 5.1.40
-- PHP Version: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `bmcforu_transfer`
--

-- --------------------------------------------------------

--
-- Table structure for table `gamescat`
--

CREATE TABLE IF NOT EXISTS `gamescat` (
  `categoryID` int(11) NOT NULL AUTO_INCREMENT,
  `categorytitle` varchar(100) NOT NULL DEFAULT '',
  `categorydescr` text NOT NULL,
  PRIMARY KEY (`categoryID`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COMMENT='v3Arcade Game Categories' AUTO_INCREMENT=11 ;

--
-- Dumping data for table `gamescat`
--

INSERT INTO `gamescat` (`categoryID`, `categorytitle`, `categorydescr`) VALUES
(1, 'New Games', 'Games not yet categorized'),
(2, 'Sports', 'Games that involve a sport'),
(3, 'Casino', 'Casino and Cards'),
(4, 'Shooters', 'Shoot ''em up games'),
(5, 'Classics', 'Old school games'),
(6, 'Action & Arcade', ''),
(7, 'Puzzle & Skill', ''),
(8, 'Space & Alien', ''),
(9, 'Misc.', 'Games that don''t fit into another category'),
(10, 'Automotive & Racing', 'Games that involve cars, racing and driving');

