From 1893bfed443e54c7434fb89247520ace8626e045 Mon Sep 17 00:00:00 2001 From: naskya Date: Fri, 19 Jan 2024 19:52:45 +0900 Subject: [PATCH] dev: fix postgres port number in Makefile overlooked in 881fd5f5d8f21c49736a6e2f7a411e44d8702ffa --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 313b52971..7d6b1f8a5 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ regenerate-entities: cd packages/backend/native-utils && \ sea-orm-cli generate entity \ --output-dir='src/model/entity' \ - --database-url='postgres://firefish:password@localhost/firefish_db' + --database-url='postgres://firefish:password@localhost:25432/firefish_db' .PHONY: update-index-js