⚠️ This article was posted over 2 years ago. The information might be outdated. ⚠️
Table of Contents
Frequently used commands
$ sudo -u postgres createuser <username> : 新しいユーザーを作成する。
$ psql -c "ALTER USER davide WITH PASSWORD 'hu8jmn3';"
$ sudo -u <username> psql :対話モードにする。
$ psql <database_name>:データベースを直接参照可能になる。
$ Rails db:データベースを直接参照可能になる
\l : DBの一覧を表示する。
\d:テーブル一覧を表示する。
\d テーブル名:指定したテーブルの情報を確認する。
\du : ユーザーの一覧を表示する。
\?: 使用可能なコマンド一覧を表示する。
\q:対話モードをやめて、元の画面に戻る。
\td: DBの構図を映し出す。
$ gem install pg : pgをインストールする。
$ rails new myapp -d postgresql: アプリを作成する際にはこれで作成する。