-- phpMyAdmin SQL Dump
-- version 2.10.3
-- http://www.phpmyadmin.net
-- 
-- Host: localhost
-- Generation Time: Oct 20, 2007 at 04:02 PM
-- Server version: 5.0.45
-- PHP Version: 5.2.3

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

-- 
-- Database: `drasticdata`
-- 

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

-- 
-- Table structure for table `examplegrid8`
-- 

DROP TABLE IF EXISTS `examplegrid8`;
CREATE TABLE `examplegrid8` (
  `id` int(11) NOT NULL auto_increment,
  `color` varchar(20) collate utf8_unicode_ci NOT NULL default 'new color',
  `value` varchar(20) collate utf8_unicode_ci NOT NULL default '#FFFFFF',
  `beautiful` tinyint(20) NOT NULL default '1',
  `Comment` varchar(20) collate utf8_unicode_ci NOT NULL default 'me',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ;

-- 
-- Dumping data for table `examplegrid8`
-- 

INSERT INTO `examplegrid8` (`id`, `color`, `value`, `beautiful`, `Comment`) VALUES 
(1, 'blue', '#1938FF', 1, 'Toby'),
(2, 'red', '#FF1C2B', 1, 'Eric'),
(3, 'purple', '#FF1988', 0, 'nice'),
(4, 'white', '#FFFFFF', 1, 'ok');
