From b9d7d4ce24de6e3d1b30307208a3d982d07bddab Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 21 Nov 2018 13:36:00 -0500 Subject: [PATCH] Change default database name to writefreely (not writeas) --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.go b/app.go index cdc7860..65939a9 100644 --- a/app.go +++ b/app.go @@ -357,7 +357,7 @@ func Serve() { app.cfg.Database.Host = "localhost" } if app.cfg.Database.Database == "" { - app.cfg.Database.Database = "writeas" + app.cfg.Database.Database = "writefreely" } connectToDatabase(app)