前提・実現したいこと
誤って貼ってしまった複合インデックスを削除したい
発生している問題・エラーメッセージ
rails db:migrate
shell
1-- remove_index(:hoges, [:"foo_id,", :bar_id]) 2rails aborted! 3StandardError: An error has occurred, this and all later migrations canceled: 4 5No indexes found on follows with the options provided.
該当のソースコード
誤った複合インデックスを張ってしまったマイグレーション
ruby
1class CreateHoges < ActiveRecord::Migration[6.1] 2 def change 3 create_table :hoges do |t| 4 t.references :foo, null: false, foreign_key: true 5 t.references :bar, null: false, foreign_key: {to_table: :fugas} 6 7 t.timestamps 8 9 t.index %i[foo_id, bar_id], unique: true 10 end 11 end 12end
%i[foo_id, bar_id]
ではなく、%i[foo_id bar_id]
であるべきでした。
試したこと
ruby
1class RemoveMissingIndexFromHoges < ActiveRecord::Migration[6.1] 2 def change 3 remove_index :hoges, %i[foo_id, bar_id] 4 end 5end
補足情報(FW/ツールのバージョンなど)
hogesテーブル
rails -v
Rails 6.1.2.1
ruby -v
ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [i386-mingw32]
ActiveRecord(Gemfile.lockより)
activerecord (= 6.1.2.1)
SQLite3(Gemfile.lockより)
sqlite3 (1.4.2)
database.yml
Ruby
1default: &default 2 adapter: sqlite3 3 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 4 timeout: 5000 5 6development: 7 <<: *default 8 database: db/development.sqlite3
sqlite .indicesコマンド
shell
1>sqlite3 development.sqlite3 2SQLite version 3.8.7.2 2014-11-18 20:57:56 3Enter ".help" for usage hints. 4sqlite> .indices 5Error: malformed database schema (index_hoges_on_foo_id,_and_bar_id) - table hoges has no column named foo_id,
回答2件
あなたの回答
tips
プレビュー