From e880f232d7a86c881c14bea9d033b17bdec0c862 Mon Sep 17 00:00:00 2001 From: Yi-Jyun Pan Date: Tue, 20 Aug 2024 02:56:47 +0800 Subject: [PATCH] chore: Add PostgreSQL config for SQLTools --- .vscode/settings.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 201c682..6745ec1 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,16 @@ { "editor.formatOnSave": true, - "rust-analyzer.cargo.features": ["test_database"] + "rust-analyzer.cargo.features": ["test_database"], + "sqltools.connections": [ + { + "previewLimit": 50, + "server": "localhost", + "port": 5432, + "driver": "PostgreSQL", + "password": "postgres", + "username": "postgres", + "database": "postgres", + "name": "backend" + } + ] }