jiriknesl
By: a guest | Oct 30th, 2009 | Syntax:
MySQL | Size: 0.87 KB | Hits: 460 | Expires: Never
-- phpMyAdmin SQL Dump
-- version 3.2.0.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Oct 30, 2009 at 07:42 PM
-- Server version: 5.1.37
-- PHP Version: 5.3.0
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `webexpo`
--
-- --------------------------------------------------------
--
-- Table structure for table `registrations`
--
CREATE TABLE IF NOT EXISTS `registrations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8_czech_ci NOT NULL,
`email` varchar(200) COLLATE utf8_czech_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `registrations`
--
INSERT INTO `registrations` (`id`, `name`, `email`) VALUES
(1, '472593649', ''),
(2, 'Hans Sauerkraut4307', '');