class RuboCop::Rails::SchemaLoader::Table

def build_indices(node)

def build_indices(node)
  each_content(node).filter_map do |child|
    next unless child&.send_type?
    next unless child.method?(:index)
    Index.new(child)
  end
end