github.com/kaleido-io/firefly@v0.0.0-20210622132723-8b4b6aacb971/db/migrations/ql/000018_create_nonces_table.up.sql (about)

     1  CREATE TABLE nonces (
     2    context        string          NOT NULL,
     3    nonce          int64           NOT NULL,
     4    group_hash     string          NOT NULL,
     5    topic          string          NOT NULL
     6  );
     7  
     8  CREATE INDEX nonces_context ON nonces(context);
     9  CREATE INDEX nonces_group ON nonces(group_hash);