You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of sqlite library github.com/mattn/go-sqlite3 v1.14.6 does not have support for ALTER TABLE DROP COLUMN, which in SQLite was introduced with version 3.35.0, which is already available in github.com/mattn/go-sqlite3 v1.14.10 which uses SQLite version 3.37.0
Solution:
Update the library version in go.mod file to github.com/mattn/go-sqlite3 v1.14.10
The text was updated successfully, but these errors were encountered:
The current version of sqlite library
github.com/mattn/go-sqlite3 v1.14.6
does not have support for ALTER TABLE DROP COLUMN, which in SQLite was introduced with version 3.35.0, which is already available ingithub.com/mattn/go-sqlite3 v1.14.10
which uses SQLite version 3.37.0Solution:
Update the library version in go.mod file to
github.com/mattn/go-sqlite3 v1.14.10
The text was updated successfully, but these errors were encountered: