First commit - es tut schon mal ganz gut

This commit is contained in:
2026-02-27 12:35:29 +00:00
commit 53124c1c78
27 changed files with 8403 additions and 0 deletions

16
create_table.sql Normal file
View File

@@ -0,0 +1,16 @@
-- Tabelle für Ausgaben erstellen
-- Diese Tabelle sollte bereits in der Docker MySQL-Datenbank existieren
-- Falls nicht, hier ist das CREATE Statement:
CREATE TABLE IF NOT EXISTS `Ausgaben_Tag` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Datum` date NOT NULL,
`WochTag` varchar(20) DEFAULT NULL,
`Wo` varchar(255) DEFAULT NULL,
`Was` varchar(500) DEFAULT NULL,
`Wieviel` decimal(10,2) NOT NULL,
`Wie` varchar(50) DEFAULT NULL,
`OK` tinyint(1) DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `idx_datum` (`Datum`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;