DEV Community

Discussion on: How to create tables on Heroku Postgresql

Collapse
 
_johlym profile image
Johnathan Lyman

Tables created using Dataclips do not persist; this should not be recommended as a means for creating a table within Heroku Postgres. Instead, create tables the correct way using the Heroku CLI:

$ heroku pg:psql -a appname
Enter fullscreen mode Exit fullscreen mode
Collapse
 
danielmabadeje profile image
Daniel Mabadeje

Very nice contribution Johnathan
But this article was not focused on the CLI aspect
It was actually focused on finding an alternative to Heroku CLI

Amyways I appreciate your contribution

Collapse
 
nelwhix profile image
Nelwhix

Johnathan, please can you explain how to create a table using CLI indepth