前提・実現したいこと
Railsで制作中のアプリをGithubで管理しながら、こまめにherokuにもデプロイをしています。今回、local環境で「rails db:rollback」してマイグレーションファイルの修正(null制約、カラム追加)し、「rails db:migrate」するとエラーが起きてしまいました。そこで早まってしまい、
bundle exec rake db:drop bundle exec rake db:create
でデータベースを削除して作り直してしまいました。もう一度マイグレーションを試すと、「そのテーブルはすでに存在していますよ(Mysql2::Error: Table 'events' already exists)」といったエラー文が出たので、モデルごと削除して作り直して、何とか元通りに機能するようになりました。その変更をGitにpushして
heroku run rails db:migrate
を実行すると、またもや「そのテーブルは存在していますよ」といったエラーメッセージが出てきました。今度もローカル環境のようにモデルの再生成すれば…とも思いましたが、やり方が分からず、そもそもこの状態で開発を進めていって良いのか不安になりました。もう一度作り直しても良いとは思っています(コードなどはGitに残っているので)が、テーブル重複のエラーを解決する経験を積んでおきたいと思っています。どなたか、「下記のエラーの解決への糸口(エラー文の読み方などでも教えて頂けると助かります)」や「途中でDBをdropしたことは今後致命的になるのか」といったことについて、ご教授のほど、よろしくお願い致します。
発生している問題・エラーメッセージ
ターミナルのエラーメッセージ(かなり長くなっています)
前略 Mysql2::Error: Table 'events' already exists /app/vendor/bundle/ruby/2.6.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:131:in `_query' /app/vendor/bundle/ruby/2.6.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:131:in `block in query' /app/vendor/bundle/ruby/2.6.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:130:in `handle_interrupt' /app/vendor/bundle/ruby/2.6.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:130:in `query' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:201:in `block (2 levels) in execute' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/dependencies/interlock.rb:48:in `block in permit_concurrent_loads' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/concurrency/share_lock.rb:187:in `yield_shares' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/dependencies/interlock.rb:47:in `permit_concurrent_loads' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:200:in `block in execute' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract_adapter.rb:722:in `block (2 levels) in log' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/concurrency/load_interlock_aware_monitor.rb:26:in `block (2 levels) in synchronize' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/concurrency/load_interlock_aware_monitor.rb:25:in `handle_interrupt' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/concurrency/load_interlock_aware_monitor.rb:25:in `block in synchronize' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/concurrency/load_interlock_aware_monitor.rb:21:in `handle_interrupt' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/concurrency/load_interlock_aware_monitor.rb:21:in `synchronize' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract_adapter.rb:721:in `block in log' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/notifications/instrumenter.rb:24:in `instrument' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract_adapter.rb:712:in `log' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:199:in `execute' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/mysql/database_statements.rb:41:in `execute' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract/schema_statements.rb:315:in `create_table' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/mysql/schema_statements.rb:81:in `create_table' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:890:in `block in method_missing' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:858:in `block in say_with_time' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:858:in `say_with_time' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:879:in `method_missing' /app/db/migrate/20201223013853_create_events.rb:3:in `change' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:828:in `exec_migration' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:812:in `block (2 levels) in migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:811:in `block in migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:471:in `with_connection' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:810:in `migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1002:in `migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1310:in `block in execute_migration_in_transaction' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1363:in `ddl_transaction' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1309:in `execute_migration_in_transaction' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1281:in `block in migrate_without_lock' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1280:in `each' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1280:in `migrate_without_lock' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1229:in `block in migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1382:in `with_advisory_lock' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1229:in `migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1061:in `up' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/migration.rb:1036:in `migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/tasks/database_tasks.rb:238:in `migrate' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/railties/databases.rake:86:in `block (3 levels) in <main>' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/railties/databases.rake:84:in `each' /app/vendor/bundle/ruby/2.6.0/gems/activerecord-6.0.3.4/lib/active_record/railties/databases.rake:84:in `block (2 levels) in <main>' /app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.3.4/lib/rails/commands/rake/rake_command.rb:23:in `block in perform' /app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.3.4/lib/rails/commands/rake/rake_command.rb:20:in `perform' /app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.3.4/lib/rails/command.rb:48:in `invoke' /app/vendor/bundle/ruby/2.6.0/gems/railties-6.0.3.4/lib/rails/commands.rb:18:in `<main>' /app/vendor/bundle/ruby/2.6.0/gems/bootsnap-1.5.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:23:in `require' /app/vendor/bundle/ruby/2.6.0/gems/bootsnap-1.5.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:23:in `block in require_with_bootsnap_lfi' /app/vendor/bundle/ruby/2.6.0/gems/bootsnap-1.5.1/lib/bootsnap/load_path_cache/loaded_features_index.rb:92:in `register' /app/vendor/bundle/ruby/2.6.0/gems/bootsnap-1.5.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require_with_bootsnap_lfi' /app/vendor/bundle/ruby/2.6.0/gems/bootsnap-1.5.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:31:in `require' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/dependencies.rb:324:in `block in require' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/dependencies.rb:291:in `load_dependency' /app/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.4/lib/active_support/dependencies.rb:324:in `require' /app/bin/rails:9:in `<main>' 中略 Tasks: TOP => db:migrate (See full trace by running task with --trace)
試したこと
ローカル環境でやったこと
・「rails d model event(モデル名)」でeventモデルを削除
・「rails d model devise user」でuserモデルを削除
・「rails g model event」でeventモデルを生成
・「rails g devise user」でuserモデルを生成
・もう一度マイグレーション
### 補足情報(FW/ツールのバージョンなど) Railsのバージョン 6.0.0 ローカル環境では見た目上、問題なく動いているように見えます。(sequelProでusersテーブルとeventsテーブルに値が保存できていることが確認できました。)エラー文は長すぎて全文入りませんでした。必要があれば記載します。よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。