Guest User

Untitled

a guest
Aug 22nd, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. CREATE TABLE `exclusive_login` (
  2. `exclusive_login_id` int(11) NOT NULL auto_increment,
  3. `email` varchar(255) NOT NULL,
  4. `password` varchar(50) NOT NULL,
  5. `active` tinyint(4) NOT NULL,
  6. PRIMARY KEY (`exclusive_login_id`)
  7. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
  8.  
  9. /*Data for the table `exclusive_login` */
  10.  
  11. insert into `exclusive_login`(`exclusive_login_id`,`email`,`password`,`active`) values (1,'brian@mdor.co.uk','5b674df4609903ffe704f4e22a855b0d0636643c',1),(2,'mpark17@gmail.com','6f7dd36721c52a4fd26fda8958856e180ffee65d',1),(3,'(null)','e9fb07ac368a9773ec18047ec7ec5efa18bf4438',1),(4,'crawfordjolly@hotmail.com','9bd8b7625f679d2dcd4ba9d399cfa320c389ab4e',1),(5,'stefpretty@gmail.com','2d08a75e1148224dfc0a8127c726bc646fdf7008',1),(6,'chris_finnigan@hotmail.com','a6f700e701ab50d0df029f2e418bdfb423aece66',1),(7,'russellandrew30@yahoo.co.uk','13ac9f93f48c399483594bd97d0052c0d034f3ad',1),(8,'terrygillan@gmail.com','ea24557f7797cd23b417283284b5d8ac9c84250a',1);
  12.  
  13. /*Table structure for table `favourite` */
Add Comment
Please, Sign In to add comment