updated on 2019-03-08
PG::DuplicateTable: ERROR: relation "users" already exists ActiveRecord::StatementInvalid: PG::DuplicateTable: ERROR: relation "users" already exists
DB接続
$ psql -d mymemo_development
ダブりテーブルを削除する
mymemo_development=> drop table users; \q
マイグレート
$ rake db:migrate