-1

用户“saleor”的密码验证失败 致命:用户“saleor”的密码验证失败

第一次迁移时,如果它与数据库有关,请有人帮我解决这个问题saleor 作为密码为“saleor”的用户,他是超级用户,如果这是解决方案,请告诉我该怎么做

4

2 回答 2

1
DATABASES = {
  "default": dj_database_url.config(default="postgres://postgres:12345@localhost:5432/saleor", conn_max_age=600)
}

Postgres 是我的用户名,12345 是我的用户名密码,即 postgres 和 saleor 是数据库名称。您可以将数据库名称更改为任何名称。如果您没有更改用户名、密码和数据库名称,它将采用默认值。

于 2019-09-16T07:34:20.080 回答
0

Step 1: Remove everything inside migration folder for app, except the init.py file.

Step 2: Delete or Truncate Your Current Database which is 'saleor'

Step 3: Create the initial migrations and generate the database schema using folowing commands

python manage.py makemigrations
python manage.py migrate

Step 4: Now you can Create new Super user using following command

python manage.py createsuperuser
于 2019-03-07T18:28:44.690 回答