Advertisement
Guest User

jiriknesl

a guest
Oct 30th, 2009
1,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.87 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.2.0.1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Oct 30, 2009 at 07:42 PM
  7. -- Server version: 5.1.37
  8. -- PHP Version: 5.3.0
  9.  
  10. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  11.  
  12. --
  13. -- Database: `webexpo`
  14. --
  15.  
  16. -- --------------------------------------------------------
  17.  
  18. --
  19. -- Table structure for table `registrations`
  20. --
  21.  
  22. CREATE TABLE IF NOT EXISTS `registrations` (
  23.   `id` int(11) NOT NULL AUTO_INCREMENT,
  24.   `name` varchar(200) COLLATE utf8_czech_ci NOT NULL,
  25.   `email` varchar(200) COLLATE utf8_czech_ci NOT NULL,
  26.   PRIMARY KEY (`id`),
  27.   UNIQUE KEY `name` (`name`)
  28. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci AUTO_INCREMENT=3 ;
  29.  
  30. --
  31. -- Dumping data for table `registrations`
  32. --
  33.  
  34. INSERT INTO `registrations` (`id`, `name`, `email`) VALUES
  35. (1, '472593649', ''),
  36. (2, 'Hans Sauerkraut4307', '');
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement