Advertisement
Guest User

WebSite DB 5

a guest
Nov 4th, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.34 KB | None | 0 0
  1.                                                **       ZepeK      **
  2.                                                     Skype: live:zepek_al
  3. =========================================================================================================================
  4. | Domain: http://hackercidadao.fortaleza.ce.gov.br/
  5. | Server: nginx/1.0.15
  6. | IP: 187.110.239.13
  7. =========================================================================================================================
  8.  
  9. http://hackercidadao.fortaleza.ce.gov.br/Login
  10.  
  11. #########################################################################################################################
  12.  
  13.  
  14. CREATE TABLE IF NOT EXISTS `tb_participante` (
  15. `id_participante` int(11) NOT NULL,
  16.   `id_equipe` int(11) NOT NULL,
  17.   `id_endereco` int(11) NOT NULL,
  18.   `nome` varchar(255) NOT NULL,
  19.   `instituicao` varchar(255) NOT NULL,
  20.   `email` varchar(255) NOT NULL,
  21.     `genero` enum('masculino','feminino') NOT NULL,
  22.   `dt_nascimento` date NOT NULL,
  23.   `cpf` varchar(15) NOT NULL,
  24.   `telefone` varchar(255) NOT NULL,
  25.   `is_lider` tinyint(1) NOT NULL DEFAULT '0'
  26. ) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=latin1;
  27.  
  28. --
  29. -- Extraindo dados da tabela `tb_participante`
  30. --
  31.  
  32. INSERT INTO `tb_participante` (`id_participante`, `id_equipe`, `id_endereco`, `nome`, `instituicao`, `email`, `genero`, `dt_nascimento`, `cpf`, `telefone`, `is_lider`) VALUES
  33. (48, 38, 31, 'Guilherme de Queiroz Shiki', 'CITINOVA', 'gshiki@gmail.com', 'masculino', '1988-03-20', '01363186302', '', 1),
  34. (49, 38, 31, 'Kellton Leitão', 'CITINOVA', 'kelltonl10@gmail.com', 'masculino', '1999-03-20', '01628513322', '', 0);
  35.  
  36. #########################################################################################################################
  37.  
  38.  
  39. -- Estrutura da tabela `tb_usuario`
  40. --
  41.  
  42. CREATE TABLE IF NOT EXISTS `tb_usuario` (
  43. `id_usuario` int(11) NOT NULL,
  44.   `id_equipe` int(11) NOT NULL,
  45.   `email` varchar(255) NOT NULL,
  46.   `senha` varchar(255) NOT NULL
  47. ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
  48.  
  49. --
  50. -- Extraindo dados da tabela `tb_usuario`
  51. --
  52.  
  53. INSERT INTO `tb_usuario` (`id_usuario`, `id_equipe`, `email`, `senha`) VALUES
  54. (30, 38, 'gshiki@gmail.com', '202cb962ac59075b964b07152d234b70');
  55.  
  56. #########################################################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement