Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

2016-10-29_20-54-44_auction-timestamps.txt
Description: (Describe migration here.)
Created: 2016-10-29 20:54:59.060159 UTC
Depends: 2016-10-13_05-36-55_user-event-log
Apply: |
  ALTER TABLE auctions ADD COLUMN created_at timestamp with time zone not null;
  ALTER TABLE auctions ADD COLUMN start_time timestamp with time zone not null;

Revert: |
  ALTER TABLE auctions DROP COLUMN start_time;
  ALTER TABLE auctions DROP COLUMN created_at;