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

     1  CREATE TABLE nextpins (
     2    context        string          NOT NULL,
     3    identity       string          NOT NULL,
     4    hash           string          NOT NULL,
     5    nonce          int64           NOT NULL
     6  );
     7  
     8  CREATE INDEX nextpins_hash ON nextpins(hash);