Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Adding ALTER to DROP todo_url column
Browse files Browse the repository at this point in the history
  • Loading branch information
JessaWitzel authored and chadwhitacre committed Dec 6, 2016
1 parent 7be8a6c commit 6906026
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,7 @@ BEGIN;
ALTER TABLE teams ALTER COLUMN getting_paid DROP NOT NULL;

ALTER TABLE teams ADD COLUMN onboarding_url text NOT NULL DEFAULT '';
ALTER TABLE teams ADD COLUMN todo_url text NOT NULL DEFAULT '';

END;

Expand Down Expand Up @@ -889,6 +890,12 @@ BEGIN;
END;


--https://github.com/gratipay/gratipay.com/pull/4214
BEGIN;
ALTER TABLE teams DROP COLUMN todo_url;
END;


-- https://github.com/gratipay/gratipay.com/pull/4164
ALTER TABLE packages ADD COLUMN readme_needs_to_be_processed bool NOT NULL DEFAULT true;

Expand Down

0 comments on commit 6906026

Please sign in to comment.