Skip to content
View yesthesoup's full-sized avatar
  • Wealthsimple
  • Montreal
Block or Report

Block or report yesthesoup

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Unit testing Flask and Alembic datab... Unit testing Flask and Alembic database migrations with pytest
    1
    from alembic.config import Config
    2
    from alembic.script import ScriptDirectory
    3
    from flask_migrate import downgrade, upgrade, stamp
    4
    
                  
    5
    from flask_project import create_app
  2. Multi-schema Rails support via monke... Multi-schema Rails support via monkeypatching ActiveRecord's PostgreSQL::SchemaDumper
    1
    ##
    2
    # Originally forked from https://gist.github.com/drnic/9d6e63802f1a7517434c25bb80f2ec09
    3
    # Works with Rails 7.0.8 and 7.1.2
    4
    # Intended to support a multi-schema, single DB Rails app, with separate files for the public schema (schema.rb)
    5
    # and the new schema (second_schema.rb)