This content is part of a third party extension that is not supported by the Cake project.
                        For more information about this extension see Cake.Flyway.
                            
	
		Summary
            Execute 'flyway clean' with options
            
		- Assembly
 - Cake
.Flyway .dll  - Namespace
 - Cake
.Flyway  - Containing Type
 - FlywayRunnerAliases
 
Syntax
public static void FlywayClean(this ICakeContext context, FlywayCleanSettings settings = null)
	Examples
Run 'flyway clean'
Task("Flyway-Clean)
    .Does(() =>
    {
        FlywayClean();
    });
            Attributes
| Type | Description | 
|---|---|
| Cake | 
						
Parameters
| Name | Type | Description | 
|---|---|---|
| context | ICakeContext | |
| settings | FlywayCleanSettings | 
Return Value
| Type | Description | 
|---|---|
| void | 
