Vat.fold: store ilk and urn as text instead of bytea
This commit is contained in:
parent
8fb573351e
commit
f79a017b48
@ -1,8 +1,8 @@
|
|||||||
CREATE TABLE maker.vat_fold (
|
CREATE TABLE maker.vat_fold (
|
||||||
id SERIAL PRIMARY KEY,
|
id SERIAL PRIMARY KEY,
|
||||||
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
||||||
ilk bytea,
|
ilk text,
|
||||||
urn bytea,
|
urn text,
|
||||||
rate numeric,
|
rate numeric,
|
||||||
tx_idx INTEGER NOT NULL,
|
tx_idx INTEGER NOT NULL,
|
||||||
raw_log JSONB,
|
raw_log JSONB,
|
||||||
|
@ -704,8 +704,8 @@ ALTER SEQUENCE maker.tend_id_seq OWNED BY maker.tend.id;
|
|||||||
CREATE TABLE maker.vat_fold (
|
CREATE TABLE maker.vat_fold (
|
||||||
id integer NOT NULL,
|
id integer NOT NULL,
|
||||||
header_id integer NOT NULL,
|
header_id integer NOT NULL,
|
||||||
ilk bytea,
|
ilk text,
|
||||||
urn bytea,
|
urn text,
|
||||||
rate numeric,
|
rate numeric,
|
||||||
tx_idx integer NOT NULL,
|
tx_idx integer NOT NULL,
|
||||||
raw_log jsonb
|
raw_log jsonb
|
||||||
|
Loading…
Reference in New Issue
Block a user