github.com/status-im/status-go@v1.1.0/appdatabase/migrations/sql/1676951398_add_currency_format_cache.up.sql (about)

     1  -- One entry per symbol
     2  CREATE TABLE IF NOT EXISTS currency_format_cache (
     3      symbol VARCHAR NOT NULL,
     4      display_decimals INT NOT NULL,
     5      strip_trailing_zeroes BOOLEAN NOT NULL
     6  );
     7  
     8  CREATE UNIQUE INDEX IF NOT EXISTS currency_format_cache_identify_entry ON currency_format_cache (symbol);