I see here how to drop Heroku Postgres DataBase. But how can I drop the database if I'm using the addon ClearDB?
Asked
Active
Viewed 3,590 times
1 Answers
7
Other alternative
Using the commands line:
heroku config | grep CLEARDB_DATABASE_URL
Result:
CLEARDB_DATABASE_URL: mysql://xxx:xxxx@xxxxx/xxxxxx?reconnect=true
Pattern:
CLEARDB_DATABASE_URL: mysql://USER:PASSWORD@HOST/DATABASE?reconnect=true
Replace to connect:
mysql --host=HOST --user=USER --password DATABASE --reconnect=true
Then digit the password and press enter:
Enter password:

alditis
- 4,633
- 3
- 49
- 76
-
where do I replace the mysql statement? Its not working in the console. Also how do You "digit a password"? – Daniel Methner May 15 '20 at 06:09