I create an app in heroku with the ClearDB add-on and PHP as language. Following the Heroku-ClearDB documentation guidelines I try to upload and existing localhost-DB created in MySQL with PHPMyAdmin ->
I execute in the console:
heroku addons:add cleardb:ignite --fork=mysql://user:pw@localhost/db_name
and everything looks fine but when I go to my app in heroku and I select the DB in the Dashboard the DB is empty.
What I am doing wrong?
Thanks.