Update db schema in file
This commit is contained in:
36
tinytask.sql
36
tinytask.sql
@@ -1,11 +1,11 @@
|
|||||||
-- phpMyAdmin SQL Dump
|
-- phpMyAdmin SQL Dump
|
||||||
-- version 5.2.1
|
-- version 5.2.2
|
||||||
-- https://www.phpmyadmin.net/
|
-- https://www.phpmyadmin.net/
|
||||||
--
|
--
|
||||||
-- Host: 127.0.0.1
|
-- Host: 192.168.0.201:3306
|
||||||
-- Generation Time: May 09, 2025 at 09:19 AM
|
-- Generation Time: Jan 26, 2026 at 09:44 PM
|
||||||
-- Server version: 10.4.32-MariaDB
|
-- Server version: 11.4.5-MariaDB-ubu2204
|
||||||
-- PHP Version: 8.2.12
|
-- PHP Version: 8.2.29
|
||||||
|
|
||||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||||
START TRANSACTION;
|
START TRANSACTION;
|
||||||
@@ -18,7 +18,7 @@ SET time_zone = "+00:00";
|
|||||||
/*!40101 SET NAMES utf8mb4 */;
|
/*!40101 SET NAMES utf8mb4 */;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Database: `tinyTask`
|
-- Database: `tinytask`
|
||||||
--
|
--
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
@@ -34,7 +34,6 @@ CREATE TABLE `projects` (
|
|||||||
`sort_order` int(11) DEFAULT 0
|
`sort_order` int(11) DEFAULT 0
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
@@ -48,11 +47,6 @@ CREATE TABLE `settings` (
|
|||||||
`icon_color` varchar(50) DEFAULT '#6c757d'
|
`icon_color` varchar(50) DEFAULT '#6c757d'
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `settings`
|
|
||||||
--
|
|
||||||
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
@@ -67,11 +61,6 @@ CREATE TABLE `subtasks` (
|
|||||||
`highlighted` tinyint(1) DEFAULT 0
|
`highlighted` tinyint(1) DEFAULT 0
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `subtasks`
|
|
||||||
--
|
|
||||||
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
@@ -87,11 +76,6 @@ CREATE TABLE `tasks` (
|
|||||||
`task_order` int(11) DEFAULT 0
|
`task_order` int(11) DEFAULT 0
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `tasks`
|
|
||||||
--
|
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Indexes for dumped tables
|
-- Indexes for dumped tables
|
||||||
--
|
--
|
||||||
@@ -130,25 +114,25 @@ ALTER TABLE `tasks`
|
|||||||
-- AUTO_INCREMENT for table `projects`
|
-- AUTO_INCREMENT for table `projects`
|
||||||
--
|
--
|
||||||
ALTER TABLE `projects`
|
ALTER TABLE `projects`
|
||||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- AUTO_INCREMENT for table `settings`
|
-- AUTO_INCREMENT for table `settings`
|
||||||
--
|
--
|
||||||
ALTER TABLE `settings`
|
ALTER TABLE `settings`
|
||||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- AUTO_INCREMENT for table `subtasks`
|
-- AUTO_INCREMENT for table `subtasks`
|
||||||
--
|
--
|
||||||
ALTER TABLE `subtasks`
|
ALTER TABLE `subtasks`
|
||||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64;
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- AUTO_INCREMENT for table `tasks`
|
-- AUTO_INCREMENT for table `tasks`
|
||||||
--
|
--
|
||||||
ALTER TABLE `tasks`
|
ALTER TABLE `tasks`
|
||||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=78;
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Constraints for dumped tables
|
-- Constraints for dumped tables
|
||||||
|
|||||||
Reference in New Issue
Block a user