-- phpMyAdmin SQL Dump
-- version 2.11.0
-- http://www.phpmyadmin.net
--
-- Host: 69.70.92.236
-- Generation Time: Apr 13, 2010 at 12:14 PM
-- Server version: 5.0.54
-- PHP Version: 5.2.12-pl0-gentoo
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `mpixel`
--
-- --------------------------------------------------------
--
-- Table structure for table `gridCell`
--
CREATE TABLE IF NOT EXISTS `gridCell` (
`gridX` int(11) NOT NULL,
`gridY` int(11) NOT NULL,
`imagePath` varchar(256) NOT NULL,
`imageURL` varchar(256) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `gridSize`
--
CREATE TABLE IF NOT EXISTS `gridSize` (
`id` int(11) NOT NULL default '0',
`gridWidthX` int(11) NOT NULL,
`gridHeightY` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `images`
--
CREATE TABLE IF NOT EXISTS `images` (
`imagePath` varchar(255) NOT NULL,
`imagePosition` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;