Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

upgrade-59.sql
-- will automatically add unique IDs to Jobsets.
ALTER TABLE Jobsets
  ADD COLUMN id SERIAL NOT NULL,
  ADD CONSTRAINT Jobsets_id_unique UNIQUE (id);