(1) By “SQL scripts in Python,” are you putting the Python code inside a .sql file for migrations? If so, this won’t work, since Flyway just passes them as sql statements to the Databricks JDBC driver. You can create a separate .py python file and ma...