def _patch(): util.prepend_base(sqlite.SQLiteDialect,SQLiteDialectChangeset) sqlite.SQLiteSchemaGenerator.__bases__ += (SQLiteConstraintGenerator,) util.prepend_base(sqlite.SQLiteSchemaDropper,SQLiteConstraintDropper)
def _patch(): util.prepend_base(oracle.OracleDialect,OracleDialectChangeset) oracle.OracleSchemaGenerator.__bases__ += (OracleConstraintGenerator,) oracle.OracleSchemaDropper.__bases__ += (OracleConstraintDropper,)
def _patch(): util.prepend_base(postgres.PGDialect,PGDialectChangeset) postgres.PGSchemaGenerator.__bases__ += (PGConstraintGenerator,) postgres.PGSchemaDropper.__bases__ += (PGConstraintDropper,)
def _patch(): util.prepend_base(sqlite.SQLiteDialect, SQLiteDialectChangeset) sqlite.SQLiteSchemaGenerator.__bases__ += (SQLiteConstraintGenerator, ) util.prepend_base(sqlite.SQLiteSchemaDropper, SQLiteConstraintDropper)
def _patch(): util.prepend_base(mysql.MySQLDialect,MySQLDialectChangeset) mysql.MySQLSchemaGenerator.__bases__ += (MySQLConstraintGenerator,) mysql.MySQLSchemaDropper.__bases__ += (MySQLConstraintDropper,)