f6a79ce7c3
* Renaming validator-api to nym-api * nym-api: simplified crate name * Added nym-api rename to changelog * Changed some output messages * Renamed validator-api-requests to nym-api requests * Removing more references to validator-api-requests * Additional lockfile name changes after full build * Removing mistakenly added merge files * ibid * ibid * Getting rid of ref to validator_api deep inside validator-client * Fixing file storage paths * Renaming struct function names referring to validator_api * Simplifying struct init * Fixed up all other instances of nym_api. * Renaming validatorApi to nymApi in TypeScript client for consistency v * Found a few more Rust instances * Changed examples in TypeScript SDK * Found one more instance of the use of validator instead of nym apis * Aliasing config key name for deserialization to preserve compatibility with old configs
13 lines
510 B
SQL
13 lines
510 B
SQL
/*
|
|
* Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
CREATE INDEX mixnode_status_timestamp ON mixnode_status(`timestamp`);
|
|
CREATE INDEX mixnode_status_id ON mixnode_status(`mixnode_details_id`);
|
|
|
|
CREATE INDEX gateway_status_timestamp ON gateway_status(`timestamp`);
|
|
CREATE INDEX gateway_status_id ON gateway_status(`gateway_details_id`);
|
|
|
|
CREATE INDEX gateway_details_id on gateway_details(`id`);
|
|
CREATE INDEX mixnode_details_id on mixnode_details(`id`); |