1e51ef7def
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/ - 12 code-workspace-Files - STATUS-*.md - viele M/D/R-Änderungen an bereits getrackten Files - .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
13 lines
475 B
SQL
13 lines
475 B
SQL
-- Hallo-Welt benötigt keine eigenen Tabellen.
|
|
-- Beispiel für ein Modul mit eigenen Tabellen:
|
|
--
|
|
-- CREATE TABLE IF NOT EXISTS m_hallo_welt_attempts (
|
|
-- id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
|
-- student_id INT NOT NULL,
|
|
-- answer_index INT NOT NULL,
|
|
-- correct BOOLEAN NOT NULL,
|
|
-- created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
-- created_by_version ENUM('v1','v2') DEFAULT 'v2',
|
|
-- KEY idx_student (student_id)
|
|
-- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|