-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcitascoders.sql
More file actions
74 lines (60 loc) · 1.92 KB
/
citascoders.sql
File metadata and controls
74 lines (60 loc) · 1.92 KB
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
-- phpMyAdmin SQL Dump
-- version 5.1.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 20, 2021 at 06:34 PM
-- Server version: 10.4.18-MariaDB
-- PHP Version: 8.0.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `elconsultorio`
--
-- --------------------------------------------------------
--
-- Table structure for table `citascoders`
--
CREATE TABLE `citascoders` (
`id` int(11) NOT NULL,
`nombre` varchar(100) NOT NULL,
`consulta` varchar(255) NOT NULL,
`resuelto` tinyint(1) NOT NULL,
`fecha` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `citascoders`
--
INSERT INTO `citascoders` (`id`, `nombre`, `consulta`, `resuelto`, `fecha`) VALUES
(92, 'alex', 'por que', 0, '2021-05-20 12:38:46'),
(96, 'gabi', 'por qué me gusta tanto el CRUD', 0, '2021-05-20 14:56:48'),
(99, 'sergio', 'por qué qué qué món !', 0, '2021-05-20 15:45:19'),
(101, 'joan', 'pourquoi?', 0, '2021-05-20 15:45:37'),
(102, 'alex', 'per chè ?', 0, '2021-05-20 15:45:37'),
(103, 'gabi', 'why?', 0, '2021-05-20 15:45:57'),
(104, 'alex', 'why?', 0, '2021-05-20 15:45:57');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `citascoders`
--
ALTER TABLE `citascoders`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `citascoders`
--
ALTER TABLE `citascoders`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=105;
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 */;