last update
All checks were successful
Gradle CI with Full Reports / build (push) Successful in 20m6s
All checks were successful
Gradle CI with Full Reports / build (push) Successful in 20m6s
This commit is contained in:
64
sql/db-export.sql
Normal file
64
sql/db-export.sql
Normal file
@@ -0,0 +1,64 @@
|
||||
-- phpMyAdmin SQL Dump
|
||||
-- version 5.2.2
|
||||
-- https://www.phpmyadmin.net/
|
||||
--
|
||||
-- Host: localhost
|
||||
-- Erstellungszeit: 18. Dez 2025 um 09:33
|
||||
-- Server-Version: 10.11.11-MariaDB
|
||||
-- PHP-Version: 8.2.28
|
||||
|
||||
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 */;
|
||||
|
||||
--
|
||||
-- Datenbank: `hhn`
|
||||
--
|
||||
CREATE DATABASE IF NOT EXISTS `hhn` DEFAULT CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci;
|
||||
USE `hhn`;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Tabellenstruktur für Tabelle `task`
|
||||
--
|
||||
|
||||
CREATE TABLE `task` (
|
||||
`taskID` int(11) NOT NULL,
|
||||
`taskName` varchar(255) NOT NULL,
|
||||
`taskDescription` varchar(255) NOT NULL,
|
||||
`taskStatus` enum('OPEN','CLOSED','INPROCESS','') NOT NULL DEFAULT 'OPEN',
|
||||
`taskWorker` varchar(255) DEFAULT NULL,
|
||||
`createdDate` timestamp NOT NULL DEFAULT current_timestamp()
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
|
||||
|
||||
--
|
||||
-- Indizes der exportierten Tabellen
|
||||
--
|
||||
|
||||
--
|
||||
-- Indizes für die Tabelle `task`
|
||||
--
|
||||
ALTER TABLE `task`
|
||||
ADD PRIMARY KEY (`taskID`);
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT für exportierte Tabellen
|
||||
--
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT für Tabelle `task`
|
||||
--
|
||||
ALTER TABLE `task`
|
||||
MODIFY `taskID` int(11) NOT NULL AUTO_INCREMENT;
|
||||
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 */;
|
||||
Reference in New Issue
Block a user