Squel proとデータベースを連携させて、squel pro内でテーブルを閲覧できるようにしたいです。どなたかご教授ください!

データベースはMYsqlを使用しています。
squel proの接続ページは、下記のリンクでみれます。ソケットやデータベース名などをしていすることで、接続されると思うのですが、、

https://gyazo.com/b7aec9dfee69315c71fdf5aa28120a8a

作成したアプリや、ソケットの指定をせずに、データベースの作成を済ませてしまいました。
下記コードは今回のアプリのデータベース作成に使用したdatabase.ymlのファイルです。

development:
adapter: mysql2
encoding: utf8
database: portfolio1_development
pool: 5
username: root

socket: /tmp/mysql.sock

Warning: The database defined as "test" will be erased and

re-generated from your development database when you run "rake".

Do not set this db to the same as development or production.

test:
adapter: mysql2
encoding: utf8
database: portfolio1_test
pool: 5
username: root

socket: /tmp/mysql.sock

production:
adapter: mysql2
encoding: utf8
database: portfolio1_production
pool: 5
username: root

socket: /tmp/mysql.sock

どなたか、ご教授お願いします!