Kyoo/transcoder/migrations/000003_add_audio_channels.up.sql
2026-04-02 19:03:27 +02:00

7 lines
116 B
PL/PgSQL

begin;
delete from gocoder.audios;
alter table gocoder.audios add column channels int not null default 2;
commit;