-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable_extension does not appear to have schema_name support #6
Comments
Per the API doc, I'm pretty sure this can be expressed in terms of module PgSaurus::ConnectionAdapters::PostgreSQLAdapter::ExtensionMethods
def enable_extension(extension_name, options = {})
options[:if_not_exists] = true
create_extension(extension_name, options).tap { reload_type_map }
end
end |
@distil-brewmaster is this still a problem for you? |
We haven't tested the latest code.. We ran into many other issues introduced.. for instance if we have a database default of |
@albertosaurus, (I'm the former distil-brewmaster) So just updated to latest in the github repo. Here's a sample output of the functions it's adding to the
|
I have a database with multiple schemas. I want to create and enable extensions in different schemas, however, only the
create_extension
seems to support schemas.The text was updated successfully, but these errors were encountered: