Initial commit MKD fixes

This commit is contained in:
Arsen
2026-02-04 00:17:04 +05:00
commit de94ad707b
312 changed files with 138754 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
-- Привязка фото отчёта (до/после) к задаче
ALTER TABLE work_photos
ADD COLUMN IF NOT EXISTS task_id VARCHAR(50);
CREATE INDEX IF NOT EXISTS idx_work_photos_task ON work_photos(task_id);