2020年6月13日 星期六

[heroku][postgresql] 使用CLI介面清空資料庫table所有資料內容

建立好heroku postgresql之後,
有時候需要直接清空資料庫,但又不想重新建立shema
或者重新migration

這時候就可以透過CLI直接清除資料庫


首先在https://data.heroku.com/
選擇你所使用的postgresql (此處範例為:postgresql-defined-05555)


選擇

Credentials

就可以看到你所需要的app 以及登入DB的command

heroku CLI 將其複製到你的command line上,就可以使用CLI登入postgresql

接下來進入DB之後,直接使用以下command 即可
TRUNCATE TABLE table_name;
或者以下commnad 也可以
DELETE FROM table_name;



沒有留言:

張貼留言