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.
Merge branch 'master' into add_postgraphile_subscription
- Loading branch information
Showing
366 changed files
with
35,786 additions
and
596 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
CREATE TABLE maker.frob ( | ||
id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
tx_idx INTEGER, | ||
ilk bytea, | ||
lad bytea, | ||
urn bytea, | ||
dink NUMERIC, | ||
dart NUMERIC, | ||
ink NUMERIC, | ||
art NUMERIC, | ||
iart NUMERIC, | ||
iart NUMERIC, | ||
tx_idx INTEGER NOT NUll, | ||
raw_log JSONB, | ||
UNIQUE (header_id, tx_idx) | ||
); |
2 changes: 0 additions & 2 deletions
2
db/migrations/1534193915_add_raw_log_column_to_flip_kick.down.sql
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
db/migrations/1534193915_add_raw_log_column_to_flip_kick.up.sql
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,11 @@ | ||
CREATE TABLE maker.tend ( | ||
db_id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
id NUMERIC NOT NULL UNIQUE, | ||
bid_id NUMERIC NOT NULL UNIQUE, | ||
lot NUMERIC, | ||
bid NUMERIC, | ||
guy BYTEA, | ||
guy VARCHAR, | ||
tic NUMERIC, | ||
era TIMESTAMP WITH TIME ZONE, | ||
tx_idx INTEGER NOT NUll, | ||
raw_log JSONB | ||
); |
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 @@ | ||
DROP TABLE maker.bite; |
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,14 @@ | ||
CREATE TABLE maker.bite ( | ||
id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
ilk bytea, | ||
lad bytea, | ||
ink VARCHAR, | ||
art VARCHAR, | ||
iArt VARCHAR, | ||
tab NUMERIC, | ||
flip VARCHAR, | ||
tx_idx INTEGER NOT NUll, | ||
raw_log JSONB, | ||
UNIQUE (header_id, tx_idx) | ||
) |
2 changes: 0 additions & 2 deletions
2
db/migrations/1534455274_remove_mom_field_from_flip_kick.down.sql
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
db/migrations/1534455274_remove_mom_field_from_flip_kick.up.sql
This file was deleted.
Oops, something went wrong.
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 @@ | ||
DROP TABLE maker.dent; |
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,11 @@ | ||
CREATE TABLE maker.dent ( | ||
db_id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
bid_id NUMERIC NOT NULL UNIQUE, | ||
lot NUMERIC, | ||
bid NUMERIC, | ||
guy BYTEA, | ||
tic NUMERIC, | ||
tx_idx INTEGER NOT NUll, | ||
raw_log JSONB | ||
); |
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,3 @@ | ||
DROP TABLE maker.pit_file_ilk; | ||
DROP TABLE maker.pit_file_stability_fee; | ||
DROP TABLE maker.pit_file_debt_ceiling; |
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,30 @@ | ||
CREATE TABLE maker.pit_file_ilk ( | ||
id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
ilk TEXT, | ||
what TEXT, | ||
data NUMERIC, | ||
tx_idx INTEGER NOT NUll, | ||
raw_log JSONB, | ||
UNIQUE (header_id, tx_idx) | ||
); | ||
|
||
CREATE TABLE maker.pit_file_stability_fee ( | ||
id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
what TEXT, | ||
data TEXT, | ||
tx_idx INTEGER NOT NULL, | ||
raw_log JSONB, | ||
UNIQUE (header_id, tx_idx) | ||
); | ||
|
||
CREATE TABLE maker.pit_file_debt_ceiling ( | ||
id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
what TEXT, | ||
data NUMERIC, | ||
tx_idx INTEGER NOT NULL, | ||
raw_log JSONB, | ||
UNIQUE (header_id, tx_idx) | ||
); |
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 @@ | ||
DROP TABLE maker.vat_init; |
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,8 @@ | ||
CREATE TABLE maker.vat_init ( | ||
id SERIAL PRIMARY KEY, | ||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE, | ||
ilk TEXT, | ||
tx_idx INTEGER NOT NUll, | ||
raw_log JSONB, | ||
UNIQUE (header_id, tx_idx) | ||
); |
Oops, something went wrong.