forked from cerc-io/ipld-eth-server
1916d585fa
* Incorporate DSS updates - Lad renamed to Guy - Dink and Dart added to Frob * update test chain data * Remove Mom field from FlipKick * Update Flip ABI and sample flip kick data * Incorporate updates to Frob event - Guy renamed to Lad - Era and Gem removed, iArt added - Also turn off integration tests that read from test chain while events are actively under development
13 lines
326 B
SQL
13 lines
326 B
SQL
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,
|
|
dink NUMERIC,
|
|
dart NUMERIC,
|
|
ink NUMERIC,
|
|
art NUMERIC,
|
|
iart NUMERIC,
|
|
UNIQUE (header_id, tx_idx)
|
|
); |