Skip to content

Commit

Permalink
deref symlinks for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-jpq committed Nov 13, 2024
1 parent db12581 commit b952006
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
1 change: 0 additions & 1 deletion coq/clients/cache/db/sql/create/pragma.sql

This file was deleted.

3 changes: 3 additions & 0 deletions coq/clients/cache/db/sql/create/pragma.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PRAGMA auto_vacuum = INCREMENTAL;
PRAGMA foreign_keys = ON;
PRAGMA temp_store = MEMORY;
1 change: 0 additions & 1 deletion coq/clients/registers/db/sql/create/pragma.sql

This file was deleted.

3 changes: 3 additions & 0 deletions coq/clients/registers/db/sql/create/pragma.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PRAGMA auto_vacuum = INCREMENTAL;
PRAGMA foreign_keys = ON;
PRAGMA temp_store = MEMORY;
1 change: 0 additions & 1 deletion coq/clients/tags/db/sql/create/pragma.sql

This file was deleted.

4 changes: 4 additions & 0 deletions coq/clients/tags/db/sql/create/pragma.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
PRAGMA auto_vacuum = INCREMENTAL;
PRAGMA foreign_keys = ON;
PRAGMA journal_mode = WAL;
PRAGMA temp_store = MEMORY;
1 change: 0 additions & 1 deletion coq/clients/tmux/db/sql/create/pragma.sql

This file was deleted.

3 changes: 3 additions & 0 deletions coq/clients/tmux/db/sql/create/pragma.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PRAGMA auto_vacuum = INCREMENTAL;
PRAGMA foreign_keys = ON;
PRAGMA temp_store = MEMORY;
1 change: 0 additions & 1 deletion coq/clients/tree_sitter/db/sql/create/pragma.sql

This file was deleted.

3 changes: 3 additions & 0 deletions coq/clients/tree_sitter/db/sql/create/pragma.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PRAGMA auto_vacuum = INCREMENTAL;
PRAGMA foreign_keys = ON;
PRAGMA temp_store = MEMORY;
1 change: 0 additions & 1 deletion coq/databases/insertions/sql/create/pragma.sql

This file was deleted.

3 changes: 3 additions & 0 deletions coq/databases/insertions/sql/create/pragma.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PRAGMA auto_vacuum = INCREMENTAL;
PRAGMA foreign_keys = ON;
PRAGMA temp_store = MEMORY;

0 comments on commit b952006

Please sign in to comment.