diff options
author | Thanos Apollo <[email protected]> | 2024-12-26 09:29:35 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-12-26 09:30:42 +0200 |
commit | 7f68a27e4f3221b58238b46ede55c852eeb318b5 (patch) | |
tree | 1780ddaeb2cea87d0c7462e3bbd28e8c307a73d0 | |
parent | b9065371324dd59d89bb194b1795f84b1d6df630 (diff) |
db: Remove extra table deletion.
-rw-r--r-- | org-gnosis.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/org-gnosis.el b/org-gnosis.el index 50c5e39..3735afd 100644 --- a/org-gnosis.el +++ b/org-gnosis.el @@ -565,7 +565,6 @@ If called with ARG do not initialize the database." (when (length< (emacsql org-gnosis-db [:select name :from sqlite-master :where (= type table)]) 3) - (org-gnosis-db-delete-tables) (emacsql-with-transaction org-gnosis-db (pcase-dolist (`(,table ,schema) org-gnosis-db--table-schemata) (emacsql org-gnosis-db [:create-table $i1 $S2] table schema)) |