pg: information does not display information in real time. See Heroku pg: info gives 0 tables as well as the Heroku Row schedule is incorrect for messages with similar problems.
By now, the information should display the correct number of tables.
To make sure the table structure is correct, you can connect to the database and display all the tables:
heroku pg:psql HEROKU_POSTGRESQL_BLUE \dt
Of course, you can also do heroku run console to check your data in rails console. Your application already uses your base plan database (HEROKU_POSTGRESQL_BLUE), so if the application works fine, everything went well.
source share