0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Rails】Table Plus でデータベースの中身を見る方法

Posted at
  • Table Plus をダウンロードしてください。


  • ダウンロードして開くと下記のようになるので、プラスボタンをクリックします。

image.png

  • Railsで使用しているデータベースを選びます(筆者の場合はPostgreSQL)

image.png

  • backend/config/database.ymlの開発環境の箇所を確認してください。筆者の場合は下記のようになっています。

    backend/config/database.yml
    default: &default
      adapter: postgresql
      encoding: unicode
      host: db
      username: hoge # これ
      password: fuga # これ
      pool: XXXXXXXXXX
    
    development:
      <<: *default
      database: bar_development # これ
    

  • 下記の画面が表示されるので、UserPassword(設定していない場合は不要です)、Databaseの欄にbackend/config/database.ymlの内容をコピペします。

image.png

  • 接続に成功すればデータベースの中身が見れるようになります!

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?