We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87a0cdf commit 3e576b9Copy full SHA for 3e576b9
src/SQLite.jl
@@ -688,7 +688,7 @@ function rollback(db::DB, name::AbstractString)
688
end
689
690
"""
691
- SQLite.drop!(db, table; ifexists::Bool=true)
+ SQLite.drop!(db, table; ifexists::Bool=false)
692
693
drop the SQLite table `table` from the database `db`; `ifexists=true` will prevent an error being thrown if `table` doesn't exist
694
@@ -701,7 +701,7 @@ function drop!(db::DB, table::AbstractString; ifexists::Bool = false)
701
702
703
704
- SQLite.dropindex!(db, index; ifexists::Bool=true)
+ SQLite.dropindex!(db, index; ifexists::Bool=false)
705
706
drop the SQLite index `index` from the database `db`; `ifexists=true` will not return an error if `index` doesn't exist
707
0 commit comments