-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase-dump.sql
More file actions
34 lines (27 loc) · 1.12 KB
/
database-dump.sql
File metadata and controls
34 lines (27 loc) · 1.12 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
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
--
-- Database: `ai_friendly_api`
--
-- --------------------------------------------------------
--
-- Table structure for table `task`
--
CREATE TABLE `task` (
`id` int(11) NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT 'pending',
`created_at` datetime DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `task`
--
INSERT INTO `task` (`id`, `title`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Implement user authentication', 'Add user registration and login functionality', 'in_progress', '2023-05-01 10:00:00', '2023-05-01 10:00:00'),
(2, 'Optimize database queries', 'Review and optimize slow queries', 'pending', '2023-05-01 11:00:00', '2023-05-01 11:00