Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

20210907120846_projects_table.up.sql
-- Add up migration script here
CREATE TABLE IF NOT EXISTS projects (
	id SERIAL PRIMARY KEY,
	owner_id integer REFERENCES users NOT NULL,
	name VARCHAR(64) NOT NULL UNIQUE
);

CREATE UNIQUE INDEX unique_project_name ON projects(name);