Okay....Here is my basic table dump....
-- phpMyAdmin SQL Dump
-- version 2.6.1-pl2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 11, 2005 at 09:27 PM
-- Server version: 4.1.10
-- PHP Version: 4.3.11
--
-- Table structure for table `game_blocking`
--
CREATE TABLE `game_blocking` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`blocking_player` tinytext NOT NULL,
`blocking_pancakes` tinyint(4) NOT NULL default '0',
`blocking_sacks` tinyint(4) NOT NULL default '0',
`blocking_allowed` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_defense`
--
CREATE TABLE `game_defense` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`defense_player` tinytext NOT NULL,
`defense_tot` tinyint(4) NOT NULL default '0',
`defense_loss` tinyint(4) NOT NULL default '0',
`defense_sack` tinyint(4) NOT NULL default '0',
`defense_ff` tinyint(4) NOT NULL default '0',
`defense_frec` tinyint(4) NOT NULL default '0',
`defense_yds` int(11) NOT NULL default '0',
`defense_td` tinyint(4) NOT NULL default '0',
`defense_int` tinyint(4) NOT NULL default '0',
`defense_ret` int(11) NOT NULL default '0',
`defense_avg` float NOT NULL default '0',
`defense_deflections` tinyint(4) NOT NULL default '0',
`defense_safeties` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_kicking`
--
CREATE TABLE `game_kicking` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`kicking_player` tinytext NOT NULL,
`kicking_fgm` tinyint(4) NOT NULL default '0',
`kicking_fga` tinyint(4) NOT NULL default '0',
`kicking_fgpct` float NOT NULL default '0',
`kicking_fgsblocked` tinyint(4) NOT NULL default '0',
`kicking_xpa` tinyint(4) NOT NULL default '0',
`kicking_xpm` tinyint(4) NOT NULL default '0',
`kicking_xppct` float NOT NULL default '0',
`kicking_xpsblocked` tinyint(4) NOT NULL default '0',
`kicking_kickoffs` tinyint(4) NOT NULL default '0',
`kicking_touchbacks` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_kickreturns`
--
CREATE TABLE `game_kickreturns` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`kickreturns_player` tinytext NOT NULL,
`kickreturns_att` tinyint(4) NOT NULL default '0',
`kickreturns_yds` int(11) NOT NULL default '0',
`kickreturns_avg` float NOT NULL default '0',
`kickreturns_td` tinyint(4) NOT NULL default '0',
`kickreturns_long` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_passing`
--
CREATE TABLE `game_passing` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`passing_player` tinytext NOT NULL,
`passing_cmp` tinyint(4) NOT NULL default '0',
`passing_att` tinyint(4) NOT NULL default '0',
`passing_yds` int(11) NOT NULL default '0',
`passing_pct` float NOT NULL default '0',
`passing_ypa` float NOT NULL default '0',
`passing_sack` tinyint(4) NOT NULL default '0',
`passing_td` tinyint(4) NOT NULL default '0',
`passing_int` tinyint(4) NOT NULL default '0',
`passing_long` tinyint(4) NOT NULL default '0',
`passing_rating` float NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_pog`
--
CREATE TABLE `game_pog` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`league_id` int(11) NOT NULL default '0',
`season` mediumint(9) NOT NULL default '0',
`week` tinyint(4) NOT NULL default '0',
`player` tinytext NOT NULL,
`team` tinytext NOT NULL,
`stats` tinytext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_punting`
--
CREATE TABLE `game_punting` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`punting_player` tinytext NOT NULL,
`punting_att` tinyint(4) NOT NULL default '0',
`punting_yds` int(11) NOT NULL default '0',
`punting_avg` float NOT NULL default '0',
`punting_long` tinyint(4) NOT NULL default '0',
`punting_blocks` tinyint(4) NOT NULL default '0',
`punting_in20` tinyint(4) NOT NULL default '0',
`punting_touchbacks` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_puntreturns`
--
CREATE TABLE `game_puntreturns` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`puntreturns_player` tinytext NOT NULL,
`puntreturns_att` tinyint(4) NOT NULL default '0',
`puntreturns_yds` int(11) NOT NULL default '0',
`puntreturns_avg` float NOT NULL default '0',
`puntreturns_long` tinyint(4) NOT NULL default '0',
`puntreturns_td` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;
-- --------------------------------------------------------
--
-- Table structure for table `game_receiving`
--
CREATE TABLE `game_receiving` (
`id` int(11) NOT NULL auto_increment,
`game_id` int(11) NOT NULL default '0',
`team` tinytext NOT NULL,
`receiving_player` tinytext NOT NULL,
`receiving_rec` tinyint(4) NOT NULL default '0',
`receiving_yds` int(11) NOT NULL default '0',
`receiving_avg` float NOT NULL default '0',
`receiving_long` tinyint(4) NOT NULL default '0',
`receiving_td` tinyint(4) NOT NULL default '0',
`receiving_drop` tinyint(4) NOT NULL default '0',
`receiving_yac` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `game_id` (`game_id`)
) ENGINE=InnoDB ;