This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log checked headers for MCD events (#43)
* Log checked headers for Bite events * Log checked headers for Drip drip events * Log checked headers for Drip file events - mark headers checked for 3 implementations of file on the Drip contract * Log checked headers for Frob frob events * Log checked headers for Pit file events - mark headers checked for 3 implementations of file on the Pit contract * Log checked headers for Vat init events
- Loading branch information
1 parent
5a2d05b
commit bf44ec6
Showing
93 changed files
with
2,435 additions
and
768 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
db/migrations/1538064962_add_bite_to_checked_headers.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN bite_checked; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN bite_checked BOOLEAN NOT NULL DEFAULT FALSE; |
2 changes: 2 additions & 0 deletions
2
db/migrations/1538067790_add_drip_drip_to_checked_headers.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN drip_drip_checked; |
2 changes: 2 additions & 0 deletions
2
db/migrations/1538067790_add_drip_drip_to_checked_headers.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN drip_drip_checked BOOLEAN NOT NULL DEFAULT FALSE; |
6 changes: 6 additions & 0 deletions
6
db/migrations/1538070524_add_drip_file_to_checked_headers.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN drip_file_ilk_checked; | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN drip_file_repo_checked; | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN drip_file_vow_checked; |
6 changes: 6 additions & 0 deletions
6
db/migrations/1538070524_add_drip_file_to_checked_headers.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN drip_file_ilk_checked BOOLEAN NOT NULL DEFAULT FALSE; | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN drip_file_repo_checked BOOLEAN NOT NULL DEFAULT FALSE; | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN drip_file_vow_checked BOOLEAN NOT NULL DEFAULT FALSE; |
2 changes: 2 additions & 0 deletions
2
db/migrations/1538075501_add_frob_to_checked_headers.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN frob_checked; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN frob_checked BOOLEAN NOT NULL DEFAULT FALSE; |
6 changes: 6 additions & 0 deletions
6
db/migrations/1538078432_add_pit_file_to_checked_headers.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN pit_file_debt_ceiling_checked; | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN pit_file_ilk_checked; | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN pit_file_stability_fee_checked; |
6 changes: 6 additions & 0 deletions
6
db/migrations/1538078432_add_pit_file_to_checked_headers.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN pit_file_debt_ceiling_checked BOOLEAN NOT NULL DEFAULT FALSE; | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN pit_file_ilk_checked BOOLEAN NOT NULL DEFAULT FALSE; | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN pit_file_stability_fee_checked BOOLEAN NOT NULL DEFAULT FALSE; |
2 changes: 2 additions & 0 deletions
2
db/migrations/1538082658_add_vat_init_to_checked_headers.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
DROP COLUMN vat_init_checked; |
2 changes: 2 additions & 0 deletions
2
db/migrations/1538082658_add_vat_init_to_checked_headers.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE public.checked_headers | ||
ADD COLUMN vat_init_checked BOOLEAN NOT NULL DEFAULT FALSE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.