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

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding ALTER to DROP todo_url column
Browse files Browse the repository at this point in the history
JessaWitzel authored and chadwhitacre committed Dec 5, 2016
1 parent f7c6bf8 commit 88226c1
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
@@ -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;

@@ -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;

0 comments on commit 88226c1

Please sign in to comment.