mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
8 lines
291 B
SQL
8 lines
291 B
SQL
-- One entry per symbol
|
|
CREATE TABLE IF NOT EXISTS currency_format_cache (
|
|
symbol VARCHAR NOT NULL,
|
|
display_decimals INT NOT NULL,
|
|
strip_trailing_zeroes BOOLEAN NOT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX IF NOT EXISTS currency_format_cache_identify_entry ON currency_format_cache (symbol); |