inukshuk / sqleton

Visualize your SQLite database schema
GNU General Public License v3.0
110 stars 12 forks source link

Adds support for tracking indexes #18

Closed kieraneglin closed 1 month ago

kieraneglin commented 1 month ago

It's useful for me to know what indexes exist on my tables for the purpose of troubleshooting performance issues, so I added it to this project! You can see it in use here

There's a new flag (--skip-index) if you want to ignore indexes which effectively keeps the current behaviour.

Default output:

Screenshot 2024-05-22 at 10 08 47 AM

With --skip-index:

Screenshot 2024-05-22 at 10 09 28 AM

inukshuk commented 1 month ago

Thanks!