173 lines
3.7 KiB
SQL
173 lines
3.7 KiB
SQL
-- phpMyAdmin SQL Dump
|
|
-- version 5.2.1
|
|
-- https://www.phpmyadmin.net/
|
|
--
|
|
-- Host: 127.0.0.1
|
|
-- Generation Time: May 09, 2025 at 09:19 AM
|
|
-- Server version: 10.4.32-MariaDB
|
|
-- PHP Version: 8.2.12
|
|
|
|
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: `taskmanage`
|
|
--
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `projects`
|
|
--
|
|
|
|
CREATE TABLE `projects` (
|
|
`id` int(11) NOT NULL,
|
|
`name` varchar(255) NOT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`sort_order` int(11) DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `settings`
|
|
--
|
|
|
|
CREATE TABLE `settings` (
|
|
`id` int(11) NOT NULL,
|
|
`title` varchar(255) DEFAULT 'Task Management',
|
|
`icon_class` varchar(255) DEFAULT 'bi-kanban',
|
|
`icon_color` varchar(50) DEFAULT '#6c757d'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
--
|
|
-- Dumping data for table `settings`
|
|
--
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `subtasks`
|
|
--
|
|
|
|
CREATE TABLE `subtasks` (
|
|
`id` int(11) NOT NULL,
|
|
`task_id` int(11) DEFAULT NULL,
|
|
`name` varchar(255) NOT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`highlighted` tinyint(1) DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
--
|
|
-- Dumping data for table `subtasks`
|
|
--
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `tasks`
|
|
--
|
|
|
|
CREATE TABLE `tasks` (
|
|
`id` int(11) NOT NULL,
|
|
`project_id` int(11) DEFAULT NULL,
|
|
`name` varchar(255) NOT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`highlighted` tinyint(1) DEFAULT 0,
|
|
`task_order` int(11) DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
--
|
|
-- Dumping data for table `tasks`
|
|
--
|
|
|
|
|
|
--
|
|
-- Indexes for dumped tables
|
|
--
|
|
|
|
--
|
|
-- Indexes for table `projects`
|
|
--
|
|
ALTER TABLE `projects`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `settings`
|
|
--
|
|
ALTER TABLE `settings`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `subtasks`
|
|
--
|
|
ALTER TABLE `subtasks`
|
|
ADD PRIMARY KEY (`id`),
|
|
ADD KEY `task_id` (`task_id`);
|
|
|
|
--
|
|
-- Indexes for table `tasks`
|
|
--
|
|
ALTER TABLE `tasks`
|
|
ADD PRIMARY KEY (`id`),
|
|
ADD KEY `project_id` (`project_id`);
|
|
|
|
--
|
|
-- AUTO_INCREMENT for dumped tables
|
|
--
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `projects`
|
|
--
|
|
ALTER TABLE `projects`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `settings`
|
|
--
|
|
ALTER TABLE `settings`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `subtasks`
|
|
--
|
|
ALTER TABLE `subtasks`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `tasks`
|
|
--
|
|
ALTER TABLE `tasks`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=78;
|
|
|
|
--
|
|
-- Constraints for dumped tables
|
|
--
|
|
|
|
--
|
|
-- Constraints for table `subtasks`
|
|
--
|
|
ALTER TABLE `subtasks`
|
|
ADD CONSTRAINT `subtasks_ibfk_1` FOREIGN KEY (`task_id`) REFERENCES `tasks` (`id`) ON DELETE CASCADE;
|
|
|
|
--
|
|
-- Constraints for table `tasks`
|
|
--
|
|
ALTER TABLE `tasks`
|
|
ADD CONSTRAINT `tasks_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE;
|
|
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 */;
|