/
wax_boy
/
semaphore_custom
Обзор
Документация
Войти
/
wax_boy
/
semaphore_custom
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
db/sql/migrations/v2.16.8.err.sql
11 строк
575 B
Denis Gukov
fix(db): migrations for mariadb 12.1
16 июн 2026, 18:58
Не верифицирован
16 июн 2026, 18:58
710950c
Код
Авторство
О чём код?
alter table `task__stage` add `start_output_id` bigint null references `task__output`(`id`); alter table `task__stage` add `end_output_id` bigint null references `task__output`(`id`); {{if .Sqlite}} create index if not exists task__stage__start_output_id on `task__stage`(`start_output_id`); create index if not exists task__stage__end_output_id on `task__stage`(`end_output_id`); {{end}} -- The MySQL foreign key on stage_id is dropped in migration_2_16_8.PreRollback -- (auto-generated names differ across DB versions). alter table `task__output` drop column `stage_id`;