Mysql2::Error: Table ' ~~~~~ ' already existsと表示され他時の対処法
・マイグレーションしようとしたときにこのようなエラーが出た。
-- create_table(:microposts)
rails aborted!
StandardError: An error has occurred, all later migrations canceled:
Mysql2::Error: Table 'microposts' already exists
~省略~
Caused by:
ActiveRecord::StatementInvalid: Mysql2::Error: Table 'microposts' already exists
~省略~
Caused by:
Mysql2::Error: Table 'microposts' already exists
~省略~
・エラーの意味は「もうすでに同じテーブルがありますよ。」といった感じのエラー。
・この状況になったらテーブルを消すことで解決する。
手順
・rails dbでデータベースを開く。
・mysqlが開くので、SHOW TABLES;を打ち込む。
・上記の例のエラーに関するとmicropostsを消す事になるが、各々違うと思うので、臨機応変に対応。
drop table 〜〜〜;で消す。
・削除ができたかどうかをSHOW TABLES;で確認。
・exitで抜ける。
・rails db:migrateを実行。
完
Author And Source
この問題について(Mysql2::Error: Table ' ~~~~~ ' already existsと表示され他時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/ShinShin12123/items/5101954e4e10e0520fa7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .