You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, I fixed it manually, but the maintainer of the gem may like to look into this.
in the eav_migration.rb, add
[<%= ActiveRecord::Migration.current_version %>]
to the end of line 1
Remove line 13 (if the current_version is 5.x or greater?) which is causing a duplicate index issue. Rails 5.1(.7?) is creating the index as part of the relationship with a name. The same name gets used for line 14 which causes a duplicate index name issue and the migration to fail.
Actually, I fixed it manually, but the maintainer of the gem may like to look into this.
in the eav_migration.rb, add
[<%= ActiveRecord::Migration.current_version %>]
to the end of line 1
Remove line 13 (if the current_version is 5.x or greater?) which is causing a duplicate index issue. Rails 5.1(.7?) is creating the index as part of the relationship with a name. The same name gets used for line 14 which causes a duplicate index name issue and the migration to fail.
The text was updated successfully, but these errors were encountered: