Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3554 from trufflesuite/db-default-adapter
Browse files Browse the repository at this point in the history
Change default @truffle/db adapter to `sqlite`
  • Loading branch information
gnidan authored Nov 24, 2020
2 parents bee8496 + 0909d84 commit 6a7f3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/db/src/pouch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const concretize = <C extends Collections>(
} => {
const {
workingDirectory,
adapter: { name, settings } = { name: "fs" }
adapter: { name, settings } = { name: "sqlite" }
} = config;

debug("Selecting %s adapter", name);
Expand Down

0 comments on commit 6a7f3d2

Please sign in to comment.