Advertisement
Guest User

Untitled

a guest
Apr 13th, 2016
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.90 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.4.10
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost:8889
  6. -- Generation Time: Apr 14, 2016 at 02:18 AM
  7. -- Server version: 5.5.42
  8. -- PHP Version: 5.6.10
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `bookmates`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `events`
  21. --
  22.  
  23. CREATE TABLE `events` (
  24.   `event_id` int(11) NOT NULL,
  25.   `event_datetime` datetime NOT NULL,
  26.   `listener_count` int(11) DEFAULT NULL,
  27.   `event_review` varchar(255) DEFAULT NULL,
  28.   `book_ISBN` varchar(15) NOT NULL,
  29.   `venue_address` varchar(100) NOT NULL,
  30.   `name` varchar(255) NOT NULL,
  31.   `email` varchar(255) NOT NULL,
  32.   `book_title` varchar(100) DEFAULT NULL
  33. ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
  34.  
  35. --
  36. -- Dumping data for table `events`
  37. --
  38.  
  39. INSERT INTO `events` (`event_id`, `event_datetime`, `listener_count`, `event_review`, `book_ISBN`, `venue_address`, `name`, `email`, `book_title`) VALUES
  40. (23, '2016-04-12 20:38:00', 0, NULL, 'jr833X3tj78C', '3 Carrington Grove, Saint Kilda East, Victoria, Australia', 'Boomkmates', 'potato@gmail.com', 'Follow the Story'),
  41. (24, '2016-04-12 22:02:00', 0, NULL, 'dunqt1rt4sAC', '23 Chapel Street, Saint Kilda, Victoria, Australia', 'Quiin', 'q@gmail.com', 'Op Amp Applications Handbook'),
  42. (25, '2016-04-28 22:20:00', 0, NULL, '53koAJAxVIAC', 'Alma Park East, Dandenong Road, Saint Kilda East, Victoria, Australia', 'Potato', 'ted@gmail.com', 'Once a Week'),
  43. (26, '2016-04-12 22:26:00', 0, NULL, 'TeXygEgvIesC', '34 Wellington Road, Clayton, Victoria, Australia', 'Boomkmates', 'ted@gmail.com', 'Men''s Health Huge in a Hurry'),
  44. (27, '2016-04-12 22:36:00', 0, NULL, 'gN0NAAAAQAAJ', 'Caulfield North, Victoria, Australia', 'hanchen', 'hanchenxie@gmail.com', 'Tom Brown''s School Days'),
  45. (28, '2016-04-12 22:37:00', 0, NULL, 'VeBjAwAAQBAJ', 'Caulfield South, Victoria, Australia', 'hanchen', 'reading.carlton@gmail.com', 'Follow Your Gut'),
  46. (29, '2016-04-12 23:14:00', 0, NULL, 'ONi72cW_n68C', 'Police Road, Mulgrave, Victoria, Australia', 'ted', 'potato@gmail.com', 'Jan Ken Po'),
  47. (30, '2016-04-12 23:54:00', 0, NULL, 'p8L4ngEACAAJ', '67 Chapel Street, Saint Kilda, Victoria, Australia', 'Polish', 'pol@gmail.com', 'Intuitive Listening'),
  48. (31, '2016-04-12 23:58:00', 0, NULL, '6LW2CAAAQBAJ', 'ASD Engineering, Beverage Drive, Tullamarine, Victoria, Australia', 'Ddd', 'dd@gmail.com', 'Beyond Measure'),
  49. (32, '2016-04-16 14:46:00', 0, NULL, 'Ji0pfaXdEK8C', 'Ferntree Gully, Victoria, Australia', 'Reader', 'reader@gnau.coi', 'JQuery UI 1. 8');
  50.  
  51. --
  52. -- Indexes for dumped tables
  53. --
  54.  
  55. --
  56. -- Indexes for table `events`
  57. --
  58. ALTER TABLE `events`
  59.   ADD PRIMARY KEY (`event_id`);
  60.  
  61. --
  62. -- AUTO_INCREMENT for dumped tables
  63. --
  64.  
  65. --
  66. -- AUTO_INCREMENT for table `events`
  67. --
  68. ALTER TABLE `events`
  69.   MODIFY `event_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=33;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement