We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff8ae82 commit d85d7ecCopy full SHA for d85d7ec
lua/papis/sqlite-wrapper.lua
@@ -258,6 +258,7 @@ function M:init()
258
if self:exists(tbl_name) and (not has_schema_changed(new_schema, old_schema)) then
259
self[tbl_name] = self:create_tbl_with_methods(tbl_name)
260
else
261
+ log.debug(string.format("The table schema for '%s' has changed", tbl_name))
262
if self:exists(tbl_name) then
263
self:drop(tbl_name)
264
end
0 commit comments