-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlinks.sql
More file actions
69 lines (55 loc) · 2.1 KB
/
links.sql
File metadata and controls
69 lines (55 loc) · 2.1 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
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Sep 27, 2020 at 12:39 AM
-- Server version: 5.7.26
-- PHP Version: 7.3.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `sandbox`
--
-- --------------------------------------------------------
--
-- Table structure for table `links`
--
CREATE TABLE `links` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(100) NOT NULL,
`url` varchar(100) NOT NULL,
`description` text NOT NULL,
`image` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `links`
--
INSERT INTO `links` (`id`, `name`, `url`, `description`, `image`) VALUES
(1, 'Codecademy', 'https://www.codecademy.com/', 'Learn to code interactively, for free.', ''),
(2, '', 'https://www.w3schools.com/', 'W3Schools is optimized for learning, testing, and training.', 'https://www.w3schools.com/css/w3css.gif'),
(3, 'Mozilla Developer Network', 'https://www.codecademy.com/', 'The Mozilla Developer Network (MDN) provides information about Open Web technologies.', 'https://developer.mozilla.org/static/img/opengraph-logo.72382e605ce3.png'),
(4, 'LikedIn Learning', 'https://www.linkedin.com/learning/', 'LinkedIn Learning offers video courses in software, creative, and business skills.', 'https://cdn.lynda.com/courses/496940-637321398385852341_540x960_thumb.jpg');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `links`
--
ALTER TABLE `links`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `links`
--
ALTER TABLE `links`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
/*!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 */;