/* ---- SUPPLY ---- */
(
one_row_id BOOLEAN NOT NULL DEFAULT TRUE PRIMARY KEY,
coins COIN[] NOT NULL,
height BIGINT NOT NULL,
CHECK (one_row_id)
);
ON supply (height);
/* ---- BALANCES---- */
(
address TEXT NOT NULL REFERENCES account (address) PRIMARY KEY,
coins COIN[] NOT NULL DEFAULT '{}',
height BIGINT NOT NULL
);
ON account_balance (height);
go-cyber/networks/local/cyberindex/schema/02-bank.sql
ฯ 0.0%