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>
24 lines
1.1 KiB
SQL
24 lines
1.1 KiB
SQL
-- Migration 2026-06-08 — Weltküche aktivieren mit Ankündigungstermin 10.6.2026
|
|
-- Idempotent: kann mehrfach ausgeführt werden ohne Schaden.
|
|
--
|
|
-- Aufruf für heutigen Deploy NICHT ausführen — Weltküche bleibt im Ankündigungs-
|
|
-- modus. Migration ist vorbereitet für den Aktivierungs-Deploy am Abend des 10.6.
|
|
--
|
|
-- Aufruf via deploy.sh (am 10.6. abends):
|
|
-- bash App/Don_t_Deploy/deploy.sh App/Don_t_Deploy/2026-06-08-weltkueche-aktivierung.sql
|
|
-- ssh ... 'docker exec webstack-php php /root/webstack/projects/geograsim/php/seed_glossar_weltkueche.php'
|
|
|
|
-- 1) Weltküche in module_info als 'aktiv' mit Ankündigungstermin 10.6.
|
|
INSERT INTO module_info (module_id, title, icon, status, sort_order, available_from)
|
|
VALUES ('weltkueche', 'Weltküche', '🌍', 'aktiv', 904, '2026-06-10')
|
|
ON DUPLICATE KEY UPDATE
|
|
status = 'aktiv',
|
|
title = 'Weltküche',
|
|
icon = '🌍',
|
|
available_from = '2026-06-10';
|
|
|
|
-- 2) Status-Check
|
|
SELECT 'module_info nach Migration:' AS info;
|
|
SELECT module_id, title, status, available_from, sort_order
|
|
FROM module_info WHERE module_id = 'weltkueche';
|