985fa49178
add transaction index and raw log to bite table work on converter for bite event update bite repository, replace guy with 32byte lad; create bite converter to entity update field type for bite event; start on bite transformer finish bite event transformer
13 lines
322 B
SQL
13 lines
322 B
SQL
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
|
|
) |