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
On https://github-to-sqlite.dogsheep.net/github/licenses_fts the create table SQL is displayed as:
CREATE VIRTUAL TABLE [licenses_fts] USING FTS5 ( [name], content=[licenses] );
It would be more aesthetically pleasing if it looked like this:
The text was updated successfully, but these errors were encountered:
This may be as easy as applying textwrap.dedent() to this:
textwrap.dedent()
sqlite-utils/sqlite_utils/db.py
Lines 778 to 787 in 0e62744
I could apply that to a few other queries in that code as well.
Sorry, something went wrong.
59e3d4d
Release 2.17
f28cd4d
Refs #144, #148, #149, #150, #151, #152, #153
No branches or pull requests
On https://github-to-sqlite.dogsheep.net/github/licenses_fts the create table SQL is displayed as:
CREATE VIRTUAL TABLE [licenses_fts] USING FTS5 ( [name], content=[licenses] );
It would be more aesthetically pleasing if it looked like this:
CREATE VIRTUAL TABLE [licenses_fts] USING FTS5 ( [name], content=[licenses] );
The text was updated successfully, but these errors were encountered: