Allow creation of Indexes in Database Manager

It would be great if there was a way to include indexes in my packaged Electron/Mobile app. It looks like as the data grows in the SQLite db that it’s getting slower to query.

For example, I would like to create this index:
CREATE INDEX idx_email_threadid ON Email(ThreadId);

It looks like Knex supports this.

https://knexjs.org/guide/schema-builder.html#index

1 Like

Same here:

2 Likes