diff --git a/lib/sequel_rails/migrations.rb b/lib/sequel_rails/migrations.rb index e29db1c..8beaffb 100644 --- a/lib/sequel_rails/migrations.rb +++ b/lib/sequel_rails/migrations.rb @@ -105,6 +105,8 @@ def initialize(db, directory, opts = OPTS) private + # This is overriding parent method, no way to choose another method name + # rubocop:disable Naming/AccessorMethodName def get_migration_tuples up_mts = [] down_mts = [] @@ -127,5 +129,6 @@ def get_migration_tuples end up_mts + down_mts.reverse end + # rubocop:enable Naming/AccessorMethodName end end