Closed fatkodima closed 2 months ago
@fatkodima, could you rebase the PR?
Rebased. Turns out, the code change is not needed now, only the test that is useful.
@fatkodima, interesting! Do you happen to know why the issue is gone now?
@fatkodima, the linter is failing.
This was fixed in https://github.com/gregnavis/active_record_doctor/commit/b013fc06c917254c4679fc044721efad1477dd33 🤷
Somehow this PR is a duplicate. We need to merge PRs faster 😅
To disable
missing_unique_indexes
for checking unique index onaccounts.user_id
, we currently should addignore_columns: ["User(user_id)"]
to the config, which does not make sense. This PR fixes that so we should write asignore_columns: ["Account(user_id)"]
.