We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The only way to see the indexes that apply to a specific table at the moment is to run the following SQL manually:
select * from sqlite_master where type = 'index' and tbl_name=?
For example:
It would be good if this list of indexes was displayed in a neater way on the table page.
The text was updated successfully, but these errors were encountered:
Easiest solution here would be to append these on to the create table statement that is displayed on the table page.
create table
Sorry, something went wrong.
28c4a6d
Demo: https://latest.datasette.io/fixtures/compound_three_primary_keys#export
CREATE INDEX statements on table page, closes #618
a5defb6
17e1393
No branches or pull requests
The only way to see the indexes that apply to a specific table at the moment is to run the following SQL manually:
For example:
It would be good if this list of indexes was displayed in a neater way on the table page.
The text was updated successfully, but these errors were encountered: