Skip to content

Commit 4625a7a

Browse files
author
ranvirsingh1991
committed
test commit
1 parent 201d0e3 commit 4625a7a

File tree

2 files changed

+67
-0
lines changed

2 files changed

+67
-0
lines changed

a.html

Whitespace-only changes.

databasefile/tasks.sql

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 4.6.6deb5
3+
-- https://www.phpmyadmin.net/
4+
--
5+
-- Host: localhost:3306
6+
-- Generation Time: Dec 06, 2018 at 06:27 PM
7+
-- Server version: 5.7.24-0ubuntu0.18.04.1
8+
-- PHP Version: 7.2.12-1+ubuntu18.04.1+deb.sury.org+1
9+
10+
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11+
SET time_zone = "+00:00";
12+
13+
14+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17+
/*!40101 SET NAMES utf8mb4 */;
18+
19+
--
20+
-- Database: `tasklist`
21+
--
22+
23+
-- --------------------------------------------------------
24+
25+
--
26+
-- Table structure for table `tasks`
27+
--
28+
29+
CREATE TABLE `tasks` (
30+
`id` int(11) NOT NULL,
31+
`title` varchar(255) NOT NULL,
32+
`description` varchar(255) NOT NULL,
33+
`status` tinyint(4) NOT NULL,
34+
`updated_at` datetime NOT NULL,
35+
`created_at` datetime NOT NULL
36+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
37+
38+
--
39+
-- Dumping data for table `tasks`
40+
--
41+
42+
INSERT INTO `tasks` (`id`, `title`, `description`, `status`, `updated_at`, `created_at`) VALUES
43+
(1, 'Coding', 'do coding dsfsd', 0, '2018-12-06 10:50:50', '2018-12-06 10:49:35'),
44+
(2, 'new task title', 'al jdklfj ljaslk', 0, '2018-12-06 10:50:51', '2018-12-06 10:50:25');
45+
46+
--
47+
-- Indexes for dumped tables
48+
--
49+
50+
--
51+
-- Indexes for table `tasks`
52+
--
53+
ALTER TABLE `tasks`
54+
ADD PRIMARY KEY (`id`);
55+
56+
--
57+
-- AUTO_INCREMENT for dumped tables
58+
--
59+
60+
--
61+
-- AUTO_INCREMENT for table `tasks`
62+
--
63+
ALTER TABLE `tasks`
64+
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
65+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
66+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
67+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)