1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 02:19:34 +05:30
Files
neosubhamoy-portfolio/neosubhamoy.sql

292 lines
9.1 KiB
SQL

-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 02, 2023 at 04:16 PM
-- Server version: 10.4.28-MariaDB
-- PHP Version: 8.2.4
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: `neosubhamoy`
--
-- --------------------------------------------------------
--
-- Table structure for table `featured_projects`
--
CREATE TABLE `featured_projects` (
`id` int(10) NOT NULL,
`name` varchar(100) NOT NULL,
`description` varchar(200) NOT NULL,
`link` varchar(100) NOT NULL,
`thumbnail` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `featured_projects`
--
INSERT INTO `featured_projects` (`id`, `name`, `description`, `link`, `thumbnail`) VALUES
(1, 'FantasyWalls', 'An open-souced community crafted wallpaper collection app', 'https://techishfellow.weebly.com/fantasywalls-official.html', './assets/images/fantasywalls.jpg'),
(2, 'ProURL', 'All in one link shortener and management tool webapp', 'https://prourl.eu.org', './assets/images/prourl.jpg'),
(3, 'TestProject', 'This is a test project description for this item', 'https://google.com', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `pages`
--
CREATE TABLE `pages` (
`id` int(10) NOT NULL,
`name` varchar(100) NOT NULL,
`title` varchar(200) NOT NULL DEFAULT 'Untitled',
`icon` varchar(100) NOT NULL,
`link` varchar(200) DEFAULT NULL,
`stag` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `pages`
--
INSERT INTO `pages` (`id`, `name`, `title`, `icon`, `link`, `stag`) VALUES
(1, 'Home', '@neo_subhamoy - official website', 'cnpvyndp.json', '', NULL),
(2, 'Projects', 'My Projects - @neo_subhamoy', 'utpmnzxz.json', '/projects', NULL),
(3, 'Blog', 'My Blog - @neo_subhamoy', 'lyrrgrsl.json', '/blog', NULL),
(4, 'Contact', 'My Projects - @neo_subhamoy', 'kthelypq.json', '/contact', 'contact');
-- --------------------------------------------------------
--
-- Table structure for table `profile`
--
CREATE TABLE `profile` (
`id` int(10) NOT NULL,
`name` varchar(100) NOT NULL,
`description` varchar(100) NOT NULL,
`link` varchar(200) NOT NULL,
`photo` varchar(200) NOT NULL,
`stag` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `profile`
--
INSERT INTO `profile` (`id`, `name`, `description`, `link`, `photo`, `stag`) VALUES
(1, 'Subhamoy Biswas', 'Personal Profile', 'https://github.com/neosubhamoy', './assets/images/neosubhamoy.jpg', NULL),
(2, 'The TechishFellow', 'Organization Profile', 'https://github.com/techishfellow', './assets/images/techishfellow.jpg', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `projects`
--
CREATE TABLE `projects` (
`id` int(10) NOT NULL,
`name` varchar(100) NOT NULL,
`shortdes` varchar(100) NOT NULL,
`description` varchar(200) NOT NULL,
`link` varchar(100) NOT NULL,
`year` int(4) NOT NULL,
`stag` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `projects`
--
INSERT INTO `projects` (`id`, `name`, `shortdes`, `description`, `link`, `year`, `stag`) VALUES
(1, 'ProURL', 'Link management tool', 'All-in-one link shortener and management tool web app. Give your links superpower try it now!', 'https://prourl.eu.org', 2023, NULL),
(2, 'My Test Project 2', '', 't is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribu', 'https://abcd.com', 2020, NULL),
(3, 'By Test Project 3', '', 'packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy', 'https://abcdefg.com', 2020, NULL),
(4, 'My Test Project 4 Hehe', '', 'typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing', 'https://abcdfgrdjerfhewsgf.com', 2017, NULL),
(5, 'Ay Test Project Something', '', 'many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like)', 'https://abcdeefjhdwjkfhjksd.com', 2019, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `quick_actions`
--
CREATE TABLE `quick_actions` (
`id` int(10) NOT NULL,
`name` varchar(100) NOT NULL,
`icon` varchar(100) NOT NULL,
`link` varchar(200) NOT NULL,
`stag` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `quick_actions`
--
INSERT INTO `quick_actions` (`id`, `name`, `icon`, `link`, `stag`) VALUES
(1, 'Send Email', 'xtnsvhie.json', 'mailto:hey@neosubhamoy.dev', 'contact'),
(2, 'Chat Online', 'fdxqrdfe.json', '#', 'contact'),
(3, 'Source Code', 'lzgmgrnn.json', '#', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `socials`
--
CREATE TABLE `socials` (
`id` int(10) NOT NULL,
`platform` varchar(100) NOT NULL,
`icon` varchar(100) NOT NULL,
`link` varchar(100) NOT NULL,
`stag` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `socials`
--
INSERT INTO `socials` (`id`, `platform`, `icon`, `link`, `stag`) VALUES
(1, 'Instagram', 'fa-brands fa-instagram', 'https://instagram.com/neo_subhamoy', 'ig'),
(2, 'Github', 'fa-brands fa-github', 'https://github.com/neosubhamoy', NULL),
(3, 'Linkedin', 'fa-brands fa-linkedin', 'https://www.linkedin.com/in/neo-subhamoy', NULL),
(4, 'Facebook', 'fa-brands fa-facebook', 'https://www.facebook.com/profile.php?id=100076097318726', 'fb'),
(5, 'Twitter', 'fa-brands fa-x-twitter', 'https://twitter.com/neo_subhamoy', 'x'),
(6, 'Mastodon', 'fa-brands fa-mastodon', 'https://mastodon.social/@neo_subhamoy', NULL),
(7, 'XDA Forums', 'fa-solid fa-meteor', 'https://xdaforums.com/m/neo_subhamoy.12646695/', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `working_on`
--
CREATE TABLE `working_on` (
`id` int(10) NOT NULL,
`title` varchar(100) NOT NULL,
`icon` varchar(100) NOT NULL,
`icon_color` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `working_on`
--
INSERT INTO `working_on` (`id`, `title`, `icon`, `icon_color`) VALUES
(1, 'React Web Development', 'fa-brands fa-react', '#38BDF8'),
(2, 'Android OS & Apps', 'fa-brands fa-android', '#3FF989'),
(3, 'Automation & Python', 'fa-brands fa-python', '#CD6CFB'),
(4, 'Javascript Library', 'fa-brands fa-js', '#DCDF3F'),
(5, 'AI & ML', 'fa-solid fa-robot', '#EC4B4B');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `featured_projects`
--
ALTER TABLE `featured_projects`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `pages`
--
ALTER TABLE `pages`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `profile`
--
ALTER TABLE `profile`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `projects`
--
ALTER TABLE `projects`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `quick_actions`
--
ALTER TABLE `quick_actions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `socials`
--
ALTER TABLE `socials`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `working_on`
--
ALTER TABLE `working_on`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `featured_projects`
--
ALTER TABLE `featured_projects`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `pages`
--
ALTER TABLE `pages`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `profile`
--
ALTER TABLE `profile`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `projects`
--
ALTER TABLE `projects`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `quick_actions`
--
ALTER TABLE `quick_actions`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `socials`
--
ALTER TABLE `socials`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `working_on`
--
ALTER TABLE `working_on`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
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 */;