-
Notifications
You must be signed in to change notification settings - Fork 25
/
createdb.sql
94 lines (77 loc) · 2.19 KB
/
createdb.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
-- phpMyAdmin SQL Dump
-- version 4.6.5.2
-- https://www.phpmyadmin.net/
--
-- Servidor: localhost:8889
-- Tiempo de generación: 15-12-2017 a las 23:06:58
-- Versión del servidor: 5.6.35
-- Versión de PHP: 7.0.15
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Base de datos: `peluqueria_canina`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `perros`
--
CREATE TABLE `perros` (
`id` int(11) NOT NULL,
`nombre` tinytext NOT NULL,
`raza` text NOT NULL,
`peso` decimal(10,0) NOT NULL,
`color` tinytext NOT NULL,
`edad` int(11) NOT NULL,
`created_at` int(11) NOT NULL,
`updated_at` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `perros`
--
INSERT INTO `perros` (`id`, `nombre`, `raza`, `peso`, `color`, `edad`, `created_at`, `updated_at`) VALUES
(2, 'Pepe', 'fox terrier', '5', 'negro', 14, 2017, 2017),
(3, 'Lia', 'Bulldog frances', '10', 'negro atrigrado', 8, 2017, 2017),
(4, 'Gomez', 'mezcla (fox terrier/yorkshire)', '3', 'gris', 14, 2017, 2017);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuario`
--
CREATE TABLE `usuario` (
`id` int(11) NOT NULL,
`name` tinytext NOT NULL,
`email` tinytext NOT NULL,
`password` tinytext NOT NULL,
`created_at` int(11) NOT NULL,
`updated_at` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `usuario`
--
INSERT INTO `usuario` (`id`, `name`, `email`, `password`, `created_at`, `updated_at`) VALUES
(1, 'Adrian', 'tazzmaniac@gmail.com', '$2y$10$sjk6RNQ6E8FIxCdzd8dl9OHLwWHer.mqF/mkbCLiP.yz3rd/H85Gq', 2017, 2017);
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `perros`
--
ALTER TABLE `perros`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `usuario`
--
ALTER TABLE `usuario`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `perros`
--
ALTER TABLE `perros`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT de la tabla `usuario`
--
ALTER TABLE `usuario`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;