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
{{ message }}
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
When adding an index using change_table and t.index :name, the index name is built from the name of the new table during the migration, so I get index_new_users_on_name instead of index_users_on_name. This is not a major issue, but it would be nice if it used the correct name.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When adding an index using change_table and
t.index :name
, the index name is built from the name of the new table during the migration, so I getindex_new_users_on_name
instead ofindex_users_on_name
. This is not a major issue, but it would be nice if it used the correct name.The text was updated successfully, but these errors were encountered: