/
wax_boy
/
semaphore_custom
Обзор
Документация
Войти
/
wax_boy
/
semaphore_custom
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
db/sql/migrations/v2.18.5.err.sql
13 строк
443 B
Denis Gukov
feat/tagged global runner (#3804)
28 апр 2026, 01:53
Не верифицирован
28 апр 2026, 01:53
5a3b26a
Код
Авторство
О чём код?
alter table `runner` add column `tag` varchar(200) not null default ''; update `runner` set `tag` = ( select rt.`tag` from `runner__tag` rt where rt.`runner_id` = `runner`.`id` limit 1 ) where exists ( select 1 from `runner__tag` rt where rt.`runner_id` = `runner`.`id` ); drop index if exists `runner__tag_tag_idx`; drop index if exists `runner__tag_runner_id_tag_idx`; drop table `runner__tag`; alter table `runner` drop `is_default`;