-
-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
When using a namespaced model such as:
module Accounts
class User < ApplicationRecord
self.ignored_columns += "old_name"
end
endrubocop-migration continues to give me an error if I try to run remove_column :accounts_users, :old_name
Note: the module has a table name prefix defined:
module Accounts
def self.table_name_prefix
"accounts_"
end
endP.S. I have no errors when using remove in change_table blocks, but I think they are not being detected at all, because they never seem to produce errors.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels