-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_task_unmep_database.sql
More file actions
71 lines (57 loc) · 2.4 KB
/
Copy pathapi_task_unmep_database.sql
File metadata and controls
71 lines (57 loc) · 2.4 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
-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Tempo de geração: 24-Jan-2024 às 19:02
-- Versão do servidor: 10.4.27-MariaDB
-- versão do PHP: 8.2.0
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 */;
--
-- Banco de dados: `nome_banco_dados`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `task`
--
CREATE TABLE `task` (
`id` int(10) UNSIGNED NOT NULL,
`title` varchar(255) DEFAULT NULL,
`description` text DEFAULT NULL,
`status` enum('pendente','executando','concluída') DEFAULT NULL,
`date_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Extraindo dados da tabela `task`
--
INSERT INTO `task` (`id`, `title`, `description`, `status`, `date_at`) VALUES
(1, 'Tarefa 1', 'Lorem ipsum ut elit magna hendrerit amet habitasse pulvinar, convallis eu ipsum massa vestibulum magna cubilia, maecenas inceptos id per fames lectus mattis.', 'pendente', '2024-01-23 02:13:14'),
(2, 'Tarefa 2', 'Lorem ipsum ut elit magna hendrerit amet habitasse pulvinar, convallis eu ipsum massa vestibulum magna cubilia, maecenas inceptos id per fames lectus mattis.', 'concluída', '2024-01-23 15:00:41'),
(3, 'Tarefa 3', 'Lorem ipsum ut elit magna hendrerit amet habitasse pulvinar, convallis eu ipsum massa vestibulum magna cubilia, maecenas inceptos id per fames lectus mattis.', 'concluída', '2024-01-20 21:37:27'),
(4, 'Tarefa 4', 'Lorem ipsum ut elit magna hendrerit amet habitasse pulvinar, convallis eu ipsum massa vestibulum magna cubilia, maecenas inceptos id per fames lectus mattis.', 'executando', '2024-01-20 21:38:14');
--
-- Índices para tabelas despejadas
--
--
-- Índices para tabela `task`
--
ALTER TABLE `task`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT de tabelas despejadas
--
--
-- AUTO_INCREMENT de tabela `task`
--
ALTER TABLE `task`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
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 */;