-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
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
.schema: line breaks and missing index information #149
Comments
I guess, in the latest version, Definitely index is missing.
|
I can see sqlite supports both sqlite> .schema people1
CREATE TABLE people1(
person_id VARCHAR PRIMARY KEY,
name VARCHAR,
born INTEGER,
died INTEGER
);
CREATE INDEX ix_people_name_2 ON people1 (name);
sqlite> .index people1
ix_people_name_2 sqlite_autoindex_people1_1
sqlite> |
@balta2ar Can you upgrade to the latest version of litecli and let me know if the line breaks are still broken? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sqlite:
litecli:
The text was updated successfully, but these errors were encountered: