Skip to content

Commit 73d1f5f

Browse files
committed
Add nodoc to migrations_paths and migration_context in AbstractAdapter
These are internally used only. [ci skip]
1 parent 883f51c commit 73d1f5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

activerecord/lib/active_record/connection_adapters/abstract_adapter.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ def initialize(connection, logger = nil, config = {}) # :nodoc:
119119
end
120120
end
121121

122-
def migrations_paths
122+
def migrations_paths # :nodoc:
123123
@config[:migrations_paths] || Migrator.migrations_paths
124124
end
125125

126-
def migration_context
126+
def migration_context # :nodoc:
127127
MigrationContext.new(migrations_paths)
128128
end
129129

0 commit comments

Comments
 (0)