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?

More than 1 year has passed since last update.

PostgresをRailsでテーブル削除する

Posted at

PostgreSQLをRailsで使用している場合、テーブルを削除するには、以下の手順に従います。

テーブル一覧の表示

rails db

上記コマンドを実行すると、PostgreSQLのコンソールに入ります。

コンソール内で、以下のコマンドを入力して、テーブル一覧を表示します。

\dt

テーブルの削除

上記のコマンドで表示されたテーブル名を使用して、テーブルを削除します。以下のコマンドを実行します。

rails destroy model [テーブル名]

例えば、テーブル名が「users」の場合、以下のように入力します。

rails destroy model User

これで、指定したテーブルが削除されます。

PostgreSQLのコンソールから抜けるには、以下のコマンドを入力します。

\q
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?