Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Comando migrate não funciona no Heroku

A API está abrindo https://api-clientespborini.herokuapp.com/ e executo o comando heroku run python manage.py migrate que teoricamente funciona, me dando esse retorno abaixo, porém ele não cria de fato as tabelas e não consigo clicar no link Clientes e nem ir para o proximo passo de criar um superuser

*Testei duas vezes, criei outro app no heroku e acontece o mesmo problema

System check identified some issues:

WARNINGS:
clientes.Cliente: (models.W042) Auto-created primary key used when not defining a primary key type, by default 'django.db.models.AutoField'.
    HINT: Configure the DEFAULT_AUTO_FIELD setting or the ClientesConfig.default_auto_field attribute to point to a subclass of AutoField, e.g. 'django.db.models.BigAutoField'.
Operations to perform:
  Apply all migrations: admin, auth, clientes, contenttypes, sessions
Running migrations:
  Applying contenttypes.0001_initial... OK
  Applying auth.0001_initial... OK
  Applying admin.0001_initial... OK
  Applying admin.0002_logentry_remove_auto_add... OK
  Applying admin.0003_logentry_add_action_flag_choices... OK
  Applying contenttypes.0002_remove_content_type_name... OK
  Applying auth.0002_alter_permission_name_max_length... OK
  Applying auth.0003_alter_user_email_max_length... OK
  Applying auth.0004_alter_user_username_opts... OK
  Applying auth.0005_alter_user_last_login_null... OK
  Applying auth.0006_require_contenttypes_0002... OK
  Applying auth.0007_alter_validators_add_error_messages... OK
  Applying auth.0008_alter_user_username_max_length... OK
  Applying auth.0009_alter_user_last_name_max_length... OK
  Applying auth.0010_alter_group_name_max_length... OK
  Applying auth.0011_update_proxy_permissions... OK
  Applying auth.0012_alter_user_first_name_max_length... OK
  Applying clientes.0001_initial... OK
  Applying clientes.0002_auto_20200804_1114... OK
  Applying clientes.0003_auto_20200806_1144... OK
  Applying sessions.0001_initial... OK
1 resposta
solução!

Acredito que isso esteja ocorrendo porque a DATABASE do settings.xml não está apontando para o banco correto. O exemplo dado no curso é antigo. Dá una olhada na documentação atual e no post que criei há pouco.