Files
uno-click/bff/migrations/002-link-user-files-to-generations.sql
2026-05-13 14:20:41 +00:00

15 lines
1017 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- Миграция: связываем user_files с generations и generation_steps
-- Добавляем новые колонки в user_files
ALTER TABLE uno_bff.user_files
ADD COLUMN IF NOT EXISTS generation_uuid uuid REFERENCES uno_bff.generations(generation_uuid) ON DELETE SET NULL,
ADD COLUMN IF NOT EXISTS generation_step_id bigint REFERENCES uno_bff.generation_steps(id) ON DELETE SET NULL;
-- Индексы для ускорения поиска по генерациям
CREATE INDEX IF NOT EXISTS idx_user_files_generation_uuid ON uno_bff.user_files(generation_uuid);
CREATE INDEX IF NOT EXISTS idx_user_files_generation_step_id ON uno_bff.user_files(generation_step_id);
-- Комментарий
COMMENT ON COLUMN uno_bff.user_files.generation_uuid IS 'UUID генерации, в рамках которой загружен файл';
COMMENT ON COLUMN uno_bff.user_files.generation_step_id IS 'ID шага генерации, в рамках которого загружен файл';