-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlink_shorten.sql
49 lines (39 loc) · 1.49 KB
/
link_shorten.sql
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
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Dec 09, 2023 at 07:19 AM
-- Server version: 8.2.0
-- PHP Version: 8.2.13
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: `link_shorten`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbl_links`
--
DROP TABLE IF EXISTS `tbl_links`;
CREATE TABLE IF NOT EXISTS `tbl_links` (
`id` int NOT NULL AUTO_INCREMENT,
`custom_link` varchar(255) COLLATE utf8mb3_persian_ci NOT NULL,
`endpoint_link` varchar(255) COLLATE utf8mb3_persian_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_persian_ci;
--
-- Dumping data for table `tbl_links`
--
INSERT INTO `tbl_links` (`id`, `custom_link`, `endpoint_link`) VALUES
(1, 'https://localhost/link?url=flowers', 'https://www.golsetan.com/services/gardening-services/'),
(2, 'https://localhost/link?url=mentor', 'https://jobteam.ir/category/coaching-and-mentoring');
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 */;