Skip to content
Snippets Groups Projects
Commit b3cbf80e authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

Code fix: not need to create txs indices in the migration script (should be...

Code fix: not need to create txs indices in the migration script (should be done in SqliteTransactions.ts)
parent 841fa0a2
No related branches found
No related tags found
No related merge requests found
Pipeline #32151 waiting for manual action
...@@ -215,8 +215,6 @@ export class MetaDAL extends AbstractSQLite<DBMeta> { ...@@ -215,8 +215,6 @@ export class MetaDAL extends AbstractSQLite<DBMeta> {
"DROP INDEX IF EXISTS idx_txs_received;" + "DROP INDEX IF EXISTS idx_txs_received;" +
"DROP INDEX IF EXISTS idx_txs_output_base;" + "DROP INDEX IF EXISTS idx_txs_output_base;" +
"DROP INDEX IF EXISTS idx_txs_output_amount;" + "DROP INDEX IF EXISTS idx_txs_output_amount;" +
"CREATE INDEX IF NOT EXISTS idx_txs_issuers ON txs (issuers);" +
"CREATE INDEX IF NOT EXISTS idx_txs_recipients ON txs (recipients);" +
"COMMIT;" "COMMIT;"
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment