From 7dfc3f3d0e5f8236bb383abd8393a9655ac0f863 Mon Sep 17 00:00:00 2001 From: Norm Date: Tue, 12 Jul 2022 12:41:30 -0400 Subject: [PATCH] Change default Postgres user/DB to akkoma --- lib/mix/tasks/pleroma/instance.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mix/tasks/pleroma/instance.ex b/lib/mix/tasks/pleroma/instance.ex index d98cb8e37..03f72c27a 100644 --- a/lib/mix/tasks/pleroma/instance.ex +++ b/lib/mix/tasks/pleroma/instance.ex @@ -100,14 +100,14 @@ defmodule Mix.Tasks.Pleroma.Instance do dbhost = get_option(options, :dbhost, "What is the hostname of your database?", "localhost") - dbname = get_option(options, :dbname, "What is the name of your database?", "pleroma") + dbname = get_option(options, :dbname, "What is the name of your database?", "akkoma") dbuser = get_option( options, :dbuser, "What is the user used to connect to your database?", - "pleroma" + "akkoma" ) dbpass = -- 2.34.1