Posticoのインストール
PostgreSQLをGUIで操作しようと思って、PG Commanderをインストールしようとしたところ、どうやらPosticoという名前に変わったようですね。
Free版での制限は以下のようです。
What are the limitations of the free trial?
At most 5 connection favorites
Only a single window per connection
Table filters are disabled
There is no time limit — use the trial as long as you want!
ダウンロードして、展開して「Postico.app」をアプリケーションかどこかにおいておきます。
HerokuにPostgreSQLのAddonをインストール
AddonとしてPostgreSQLがインストールされているかどうか念のため確認します。
$ heroku addons | grep POSTGRES
$ heroku addons
<your app name> has no add-ons.
PostgreSQLをインストール
検証するためだけなので、今回はhobby-dev
を利用します。
$ heroku addons:add heroku-postgresql:hobby-dev
Adding heroku-postgresql:hobby-dev on <your app name>... done, v5 (free)
Attached as HEROKU_POSTGRESQL_ONYX_URL
Database has been created and is available
! This database is empty. If upgrading, you can transfer
! data from another database with pgbackups:restore.
PostgreSQLの接続情報確認
以下のコマンドで、PostgreSQLの接続情報を確認しておきます。
$ heroku config | grep HEROKU_POSTGRESQL
HEROKU_POSTGRESQL_ONYX_URL: postgres://[ user ]:[ password ]@[ host ]:[ port ]/[ database ]
Posticoでの接続
Posticoを起動し以下を入力後、「connect」をクリックします。
- NickName:適当に設定
- Host:[ host ]
- Port:[ port ]
- User:[ user ]
- Password:[ password ]
- Database:[ database ]
Posticoでのテーブルをみる
これから少し使い込んでみたいと思います。