Skip to content

重置Heroku中PostgreSQL数据库方法

luqiuyuan edited this page Jun 7, 2019 · 1 revision

有时,在做前端开发的时候,我们需要把数据库重置为初始的状态,以避开已有数据的影响。下面的步骤是重置PostgreSQL数据库的方法。

  1. 在命令行中运行cd <path/to/your/git/repo>,进入你本机上后端服务器的git代码仓库。
  2. 运行heroku pg:reset DATABASE
  3. 运行heroku run rake db:migrate db:seed
Clone this wiki locally