-- phpMyAdmin SQL Dump
-- version 3.4.5
--
phpMyAdmin
--
-- Host: localhost
-- Generation Time: Mar 19, 2012 at 06:55 AM
-- Server version: 5.5.16
-- PHP Version: 5.3.8
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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: `temp`
--
-- --------------------------------------------------------
--
-- Table structure for table `navigator`
--
CREATE TABLE IF NOT EXISTS `navigator` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`link` text NOT NULL,
`fontcolor` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `navigator`
--
INSERT INTO `navigator` (`id`, `name`, `link`, `fontcolor`) VALUES
(1, 'Test', 'http://google.ca', '000000'),
(2, 'LOL', 'falfh', 'FFFFFF');
-- --------------------------------------------------------
--
-- Table structure for table `style`
--
CREATE TABLE IF NOT EXISTS `style` (
`background-color` text NOT NULL COMMENT 'The background color of your website (HEX)',
`font-family` text NOT NULL COMMENT 'Font family for everything on your website',
`font-color` text NOT NULL COMMENT 'Font color of your font',
`link-color` text NOT NULL COMMENT 'Color of hyperlinks on your website',
`box-colors` text NOT NULL COMMENT 'Color of your boxes'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `style`
--
INSERT INTO `style` (`background-color`, `font-family`, `font-color`, `link-color`, `box-colors`) VALUES
('C0C0C0', 'Tahoma', '330000', 'FFFFFF', '3399CC');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;