From 84e0402e4668973a3ba2155526995c433577abc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20T=C3=B6tterman?= Date: Wed, 17 Feb 2021 16:04:18 +0200 Subject: [PATCH] sqlite uses a file, not a server and port --- Using-the-PostgreSQL-Backend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Using-the-PostgreSQL-Backend.md b/Using-the-PostgreSQL-Backend.md index 686f60e..a5f0d80 100644 --- a/Using-the-PostgreSQL-Backend.md +++ b/Using-the-PostgreSQL-Backend.md @@ -35,7 +35,7 @@ GRANT all privileges ON database bitwarden_rs TO bitwarden_rs; 6. create the file bitwarden.load with the following content: ``` load database - from sqlite://yoursqliteuser:yoursqlitepassword@yoursqliteserver:yoursqliteport/yoursqlitedatabase + from sqlite:///where/you/keep/your/bitwarden_rs/db.sqlite3 into postgresql://yourpgsqluser:yourpgsqlpassword@yourpgsqlserver:yourpgsqlport/yourpgsqldatabase WITH data only, include no drop, reset sequences EXCLUDING TABLE NAMES LIKE '__diesel_schema_migrations'