This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
forked from Cruba/foodBit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foodbit.sql
119 lines (100 loc) · 4.28 KB
/
foodbit.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 19, 2021 at 04:44 AM
-- Server version: 10.1.40-MariaDB
-- PHP Version: 7.3.5
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `foodbit`
--
-- --------------------------------------------------------
--
-- Table structure for table `solicitud`
--
CREATE TABLE `solicitud` (
`identificador` int(100) NOT NULL,
`nombre` text COLLATE utf8_spanish_ci NOT NULL,
`correo` varchar(100) COLLATE utf8_spanish_ci NOT NULL,
`telefono` int(10) NOT NULL,
`empresa` text COLLATE utf8_spanish_ci NOT NULL,
`mensaje` varchar(255) COLLATE utf8_spanish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;
-- --------------------------------------------------------
--
-- Table structure for table `usuarios`
--
CREATE TABLE `usuarios` (
`identificador` int(11) NOT NULL,
`nombre` text COLLATE utf8_spanish_ci NOT NULL,
`empresa` varchar(100) COLLATE utf8_spanish_ci NOT NULL,
`imagen` longblob NOT NULL,
`telefono` int(50) NOT NULL,
`correo` varchar(50) COLLATE utf8_spanish_ci NOT NULL,
`direccion` varchar(150) COLLATE utf8_spanish_ci NOT NULL,
`pass` varchar(100) COLLATE utf8_spanish_ci NOT NULL,
`descripcion` varchar(100) COLLATE utf8_spanish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;
--
-- Dumping data for table `usuarios`
--
INSERT INTO `usuarios` (`identificador`, `nombre`, `empresa`, `imagen`, `telefono`, `correo`, `direccion`, `pass`, `descripcion`) VALUES
(2, 'BRANDON ALAIN', '', '', 0, '[email protected]', '', '', ''),
(3, 'alain', '', '', 0, '[email protected]', '', '', ''),
(4, 'aalain', '', '', 0, '[email protected]', '', '11212', ''),
(5, 'alain', '', '', 0, '[email protected]', '', 'a01610228fe998f515a72dd730294d87', ''),
(6, 'BRANDON ALAIN', 'aass', '', 0, '[email protected]', '', 'e110fb45bc4f7cc5d367b06bfbc8e5c3', ''),
(7, 'BRANDON ALAIN', 'aass ptur', '', 0, '[email protected]', '', '4c56ff4ce4aaf9573aa5dff913df997a', ''),
(8, 'alain', 'aass', '', 0, '[email protected]', '', 'e022c20ad33354cbec77cc9709996dd1', ''),
(9, 'Brandon', 'prueba', '', 0, '[email protected]', '', '7f6ffaa6bb0b408017b62254211691b5', ''),
(10, 'alain', 'asas', '', 0, '[email protected]', '', 'a01610228fe998f515a72dd730294d87', ''),
(11, 'BRANDON ALAIN', 'aass', '', 0, '[email protected]', '', 'e110fb45bc4f7cc5d367b06bfbc8e5c3', ''),
(12, 'aaaaaaaaaaaa', '', '', 0, '', '', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(13, '', '', '', 0, '', '', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(14, '', '', '', 0, '', '', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(15, '', '', '', 0, '', '', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(16, '', '', 0x666f746f732f, 0, '', '', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(17, 'BRANDON ALAIN', 'prueba', 0x666f746f732f, 4555, '[email protected]', '', '81dc9bdb52d04dc20036dbd8313ed055', ''),
(18, '', '', 0x666f746f732f, 0, '', '', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(19, '', '', 0x666f746f732f, 0, '', '', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(20, '', '', 0x666f746f732f, 0, '', 'asas', 'd41d8cd98f00b204e9800998ecf8427e', ''),
(21, 'alain', 'cruba', 0x666f746f732f, 0, '[email protected]', 'aaa', '202cb962ac59075b964b07152d234b70', '');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `solicitud`
--
ALTER TABLE `solicitud`
ADD PRIMARY KEY (`identificador`);
--
-- Indexes for table `usuarios`
--
ALTER TABLE `usuarios`
ADD PRIMARY KEY (`identificador`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `solicitud`
--
ALTER TABLE `solicitud`
MODIFY `identificador` int(100) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `usuarios`
--
ALTER TABLE `usuarios`
MODIFY `identificador` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;