Using DB migrations using Flyway with multiple schemas which have the same lifecycle, how can I achieve that they all get clean when I use flyway:clean?
$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...