Files
silo-server/migrations/sql/20260809133921_rename_default_transcode_dir.sql

11 lines
312 B
SQL

-- +goose Up
UPDATE server_settings
SET value = '/tmp/silo-transcode'
WHERE key = 'playback.transcode_dir'
AND value = '/tmp/streamapp-transcode';
-- +goose Down
-- Intentionally a no-op: after the update there is no reliable way to
-- distinguish the migrated default from an operator-chosen path.
SELECT 1;