tasks.sql 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. -- phpMyAdmin SQL Dump
  2. -- version 5.0.4
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: 127.0.0.1
  6. -- Erstellungszeit: 12. Jul 2023 um 15:06
  7. -- Server-Version: 10.1.21-MariaDB
  8. -- PHP-Version: 8.0.2
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. START TRANSACTION;
  11. SET time_zone = "+00:00";
  12. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  13. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  14. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  15. /*!40101 SET NAMES utf8mb4 */;
  16. --
  17. -- Datenbank: `tasks`
  18. --
  19. -- --------------------------------------------------------
  20. --
  21. -- Tabellenstruktur für Tabelle `arbeitstage`
  22. --
  23. DROP TABLE IF EXISTS `arbeitstage`;
  24. CREATE TABLE `arbeitstage` (
  25. `bundesland` varchar(5) NOT NULL DEFAULT '',
  26. `datum` date NOT NULL DEFAULT '0000-00-00',
  27. `wochentag` varchar(5) NOT NULL DEFAULT '',
  28. `feiertag` varchar(50) NOT NULL DEFAULT '',
  29. `mofr` tinyint(4) NOT NULL DEFAULT '0',
  30. `mosa` tinyint(4) NOT NULL DEFAULT '0',
  31. `moso` tinyint(4) NOT NULL DEFAULT '0',
  32. `diso` tinyint(4) NOT NULL DEFAULT '0'
  33. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  34. -- --------------------------------------------------------
  35. --
  36. -- Tabellenstruktur für Tabelle `benutzer`
  37. --
  38. DROP TABLE IF EXISTS `benutzer`;
  39. CREATE TABLE `benutzer` (
  40. `benutzer` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  41. `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  42. `vorname` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  43. `email` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  44. `passwort` varchar(255) COLLATE utf8_unicode_ci NOT NULL
  45. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  46. -- --------------------------------------------------------
  47. --
  48. -- Tabellenstruktur für Tabelle `kunden`
  49. --
  50. DROP TABLE IF EXISTS `kunden`;
  51. CREATE TABLE `kunden` (
  52. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  53. `system` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '?',
  54. `start_soll` time NOT NULL,
  55. `ende_soll` time NOT NULL,
  56. `erster_status` date NOT NULL,
  57. `version` date NOT NULL,
  58. `beta_version` tinyint(4) NOT NULL DEFAULT '0',
  59. `aktiv` tinyint(4) NOT NULL DEFAULT '1',
  60. `woche` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Mo-Sa',
  61. `bundesland` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'HE',
  62. `plz` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  63. `ort` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  64. `whitelist` mediumtext COLLATE utf8_unicode_ci NOT NULL
  65. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  66. -- --------------------------------------------------------
  67. --
  68. -- Tabellenstruktur für Tabelle `kunden_aufgabe`
  69. --
  70. DROP TABLE IF EXISTS `kunden_aufgabe`;
  71. CREATE TABLE `kunden_aufgabe` (
  72. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  73. `aufgabe` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  74. `start_soll` time NOT NULL,
  75. `ende_soll` time NOT NULL,
  76. `erster_status` date NOT NULL,
  77. `aktiv` tinyint(4) NOT NULL DEFAULT '1',
  78. `woche` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Mo-Sa',
  79. `ende_mo` time DEFAULT NULL,
  80. `ende_di` time DEFAULT NULL,
  81. `ende_mi` time DEFAULT NULL,
  82. `ende_do` time DEFAULT NULL,
  83. `ende_fr` time DEFAULT NULL,
  84. `ende_sa` time DEFAULT NULL,
  85. `ende_so` time DEFAULT NULL,
  86. `whitelist` mediumtext COLLATE utf8_unicode_ci NOT NULL
  87. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  88. -- --------------------------------------------------------
  89. --
  90. -- Tabellenstruktur für Tabelle `kunden_config`
  91. --
  92. DROP TABLE IF EXISTS `kunden_config`;
  93. CREATE TABLE `kunden_config` (
  94. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  95. `datum` date NOT NULL,
  96. `info` longtext COLLATE utf8_unicode_ci NOT NULL
  97. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  98. -- --------------------------------------------------------
  99. --
  100. -- Tabellenstruktur für Tabelle `kunden_gcstarter`
  101. --
  102. DROP TABLE IF EXISTS `kunden_gcstarter`;
  103. CREATE TABLE `kunden_gcstarter` (
  104. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  105. `datum` date NOT NULL,
  106. `gcstarter` longtext COLLATE utf8_unicode_ci NOT NULL
  107. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  108. -- --------------------------------------------------------
  109. --
  110. -- Stellvertreter-Struktur des Views `kunden_gcstarter_max_datum`
  111. -- (Siehe unten für die tatsächliche Ansicht)
  112. --
  113. DROP VIEW IF EXISTS `kunden_gcstarter_max_datum`;
  114. CREATE TABLE `kunden_gcstarter_max_datum` (
  115. `kunde` varchar(50)
  116. ,`max_datum` date
  117. );
  118. -- --------------------------------------------------------
  119. --
  120. -- Tabellenstruktur für Tabelle `kunden_gcstruct`
  121. --
  122. DROP TABLE IF EXISTS `kunden_gcstruct`;
  123. CREATE TABLE `kunden_gcstruct` (
  124. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  125. `datum` date NOT NULL,
  126. `gcstruct` longtext COLLATE utf8_unicode_ci NOT NULL
  127. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  128. -- --------------------------------------------------------
  129. --
  130. -- Tabellenstruktur für Tabelle `status_kommentar`
  131. --
  132. DROP TABLE IF EXISTS `status_kommentar`;
  133. CREATE TABLE `status_kommentar` (
  134. `id` int(11) NOT NULL,
  135. `datum` date NOT NULL,
  136. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  137. `start` time NOT NULL,
  138. `benutzer` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  139. `fehler` int(11) NOT NULL,
  140. `status` int(11) NOT NULL,
  141. `kommentar` text COLLATE utf8_unicode_ci NOT NULL,
  142. `mdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  143. `cdate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
  144. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  145. -- --------------------------------------------------------
  146. --
  147. -- Tabellenstruktur für Tabelle `status_kommentar_historie`
  148. --
  149. DROP TABLE IF EXISTS `status_kommentar_historie`;
  150. CREATE TABLE `status_kommentar_historie` (
  151. `id` int(11) NOT NULL,
  152. `datum` date NOT NULL,
  153. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  154. `start` time NOT NULL,
  155. `benutzer` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  156. `fehler` int(11) NOT NULL,
  157. `status` int(11) NOT NULL,
  158. `kommentar` text COLLATE utf8_unicode_ci NOT NULL,
  159. `mdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  160. `cdate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
  161. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  162. -- --------------------------------------------------------
  163. --
  164. -- Tabellenstruktur für Tabelle `status_meldung`
  165. --
  166. DROP TABLE IF EXISTS `status_meldung`;
  167. CREATE TABLE `status_meldung` (
  168. `datum` date NOT NULL,
  169. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  170. `aufgabe` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  171. `start` time NOT NULL,
  172. `ende` time NOT NULL,
  173. `fehlerbericht_import` longtext COLLATE utf8_unicode_ci,
  174. `fehlerbericht` longtext COLLATE utf8_unicode_ci,
  175. `anzahl` tinyint(4) NOT NULL DEFAULT '0',
  176. `bearbeitet` tinyint(4) NOT NULL DEFAULT '0',
  177. `kommentar_id` int(11) NOT NULL DEFAULT '0'
  178. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  179. -- --------------------------------------------------------
  180. --
  181. -- Tabellenstruktur für Tabelle `status_meldung_historie`
  182. --
  183. DROP TABLE IF EXISTS `status_meldung_historie`;
  184. CREATE TABLE `status_meldung_historie` (
  185. `datum` date NOT NULL,
  186. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  187. `aufgabe` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  188. `start` time NOT NULL,
  189. `ende` time NOT NULL,
  190. `fehlerbericht_import` longtext COLLATE utf8_unicode_ci,
  191. `fehlerbericht` longtext COLLATE utf8_unicode_ci,
  192. `anzahl` tinyint(4) NOT NULL DEFAULT '0',
  193. `bearbeitet` tinyint(4) NOT NULL DEFAULT '0',
  194. `kommentar_id` int(11) NOT NULL DEFAULT '0'
  195. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  196. -- --------------------------------------------------------
  197. --
  198. -- Tabellenstruktur für Tabelle `tickets`
  199. --
  200. DROP TABLE IF EXISTS `tickets`;
  201. CREATE TABLE `tickets` (
  202. `id` int(11) NOT NULL,
  203. `datum` date NOT NULL,
  204. `benutzer` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  205. `kunde` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  206. `kontakt` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  207. `beschreibung` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  208. `termin` datetime NOT NULL,
  209. `dauer` time NOT NULL,
  210. `status` tinyint(4) NOT NULL,
  211. `prioritaet` tinyint(4) NOT NULL,
  212. `fortschritt` tinyint(4) NOT NULL,
  213. `kategorie` tinyint(4) NOT NULL,
  214. `programm` tinyint(4) NOT NULL,
  215. `kommentar` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  216. `mdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  217. `cdate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
  218. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  219. -- --------------------------------------------------------
  220. --
  221. -- Struktur des Views `kunden_gcstarter_max_datum`
  222. --
  223. DROP TABLE IF EXISTS `kunden_gcstarter_max_datum`;
  224. DROP VIEW IF EXISTS `kunden_gcstarter_max_datum`;
  225. CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `kunden_gcstarter_max_datum` AS SELECT `kunden_gcstarter`.`kunde` AS `kunde`, max(`kunden_gcstarter`.`datum`) AS `max_datum` FROM `kunden_gcstarter` GROUP BY `kunden_gcstarter`.`kunde` ;
  226. --
  227. -- Indizes der exportierten Tabellen
  228. --
  229. --
  230. -- Indizes für die Tabelle `arbeitstage`
  231. --
  232. ALTER TABLE `arbeitstage`
  233. ADD PRIMARY KEY (`bundesland`,`datum`);
  234. --
  235. -- Indizes für die Tabelle `benutzer`
  236. --
  237. ALTER TABLE `benutzer`
  238. ADD PRIMARY KEY (`benutzer`);
  239. --
  240. -- Indizes für die Tabelle `kunden`
  241. --
  242. ALTER TABLE `kunden`
  243. ADD PRIMARY KEY (`kunde`);
  244. --
  245. -- Indizes für die Tabelle `kunden_aufgabe`
  246. --
  247. ALTER TABLE `kunden_aufgabe`
  248. ADD PRIMARY KEY (`kunde`,`aufgabe`) USING BTREE;
  249. --
  250. -- Indizes für die Tabelle `kunden_config`
  251. --
  252. ALTER TABLE `kunden_config`
  253. ADD PRIMARY KEY (`kunde`,`datum`);
  254. --
  255. -- Indizes für die Tabelle `kunden_gcstarter`
  256. --
  257. ALTER TABLE `kunden_gcstarter`
  258. ADD PRIMARY KEY (`kunde`,`datum`);
  259. --
  260. -- Indizes für die Tabelle `kunden_gcstruct`
  261. --
  262. ALTER TABLE `kunden_gcstruct`
  263. ADD PRIMARY KEY (`kunde`,`datum`);
  264. --
  265. -- Indizes für die Tabelle `status_kommentar`
  266. --
  267. ALTER TABLE `status_kommentar`
  268. ADD PRIMARY KEY (`id`),
  269. ADD KEY `datum-kunde-start` (`datum`,`kunde`,`start`);
  270. --
  271. -- Indizes für die Tabelle `status_kommentar_historie`
  272. --
  273. ALTER TABLE `status_kommentar_historie`
  274. ADD PRIMARY KEY (`id`),
  275. ADD KEY `datum-kunde-start` (`datum`,`kunde`,`start`);
  276. --
  277. -- Indizes für die Tabelle `status_meldung`
  278. --
  279. ALTER TABLE `status_meldung`
  280. ADD PRIMARY KEY (`datum`,`kunde`,`aufgabe`,`start`),
  281. ADD KEY `kunde` (`kunde`);
  282. --
  283. -- Indizes für die Tabelle `status_meldung_historie`
  284. --
  285. ALTER TABLE `status_meldung_historie`
  286. ADD PRIMARY KEY (`datum`,`kunde`,`aufgabe`,`start`),
  287. ADD KEY `kunde` (`kunde`);
  288. --
  289. -- Indizes für die Tabelle `tickets`
  290. --
  291. ALTER TABLE `tickets`
  292. ADD PRIMARY KEY (`id`),
  293. ADD KEY `datum-kunde-start` (`datum`,`kunde`);
  294. --
  295. -- AUTO_INCREMENT für exportierte Tabellen
  296. --
  297. --
  298. -- AUTO_INCREMENT für Tabelle `status_kommentar`
  299. --
  300. ALTER TABLE `status_kommentar`
  301. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  302. --
  303. -- AUTO_INCREMENT für Tabelle `status_kommentar_historie`
  304. --
  305. ALTER TABLE `status_kommentar_historie`
  306. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  307. --
  308. -- AUTO_INCREMENT für Tabelle `tickets`
  309. --
  310. ALTER TABLE `tickets`
  311. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  312. COMMIT;
  313. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  314. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  315. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;