Skip to content
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

Create views with schemas #651

Closed
wants to merge 2 commits into from

Commits on Oct 26, 2022

  1. add schema support for view create/drop

    previous functionality did not support create/drop of views within a
    schema. This causes issues when a users is expecting the view to exist
    within the schema specified by the metadata object - but it is instead
    created in the default schema regardless.
    
    adding in fuctionality to support creation of views within a schema as
    provided by the metadata object. Defaults to None if no schema is
    present.
    
    adding in functionality to specify schema when dropping view as provided
    by metadata object
    
    modified:   sqlalchemy_utils/view.py
    argmonster committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    da29876 View commit details
    Browse the repository at this point in the history
  2. make the linter happy

    some of the lines were longer than the linter liked
    
    modified:   sqlalchemy_utils/view.py
    argmonster committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    46cd4c2 View commit details
    Browse the repository at this point in the history