From d64c1b1d3de7457a6f7717379326aa2e06d1dbbd Mon Sep 17 00:00:00 2001 From: jsjiang Date: Fri, 27 Oct 2023 10:03:12 -0700 Subject: [PATCH] Update bdb_minter_migration_notes.md --- doc/bdb_minter_migration_notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/bdb_minter_migration_notes.md b/doc/bdb_minter_migration_notes.md index 6898e788..0b1ba9d1 100644 --- a/doc/bdb_minter_migration_notes.md +++ b/doc/bdb_minter_migration_notes.md @@ -53,7 +53,7 @@ background_jobs_active: false * data model: minter.py * migration file: 0004_minter.py -#### 2.2 Modify the EZID settings `settings/settings.py` to use the `eziddba` account for data model migration +#### 2.2 Modify the EZID settings `settings/settings.py` to use the dba account for data model migration ``` DATABASES = { @@ -61,7 +61,7 @@ DATABASES = { 'ENGINE': 'django.db.backends.mysql', 'HOST': hostname, 'NAME': 'ezid', - 'USER': 'eziddba', + 'USER': 'eziddba_account', 'PASSWORD': 'eziddba_password', ```