FAKE - F# Make


RoundhouseHelper

Contains tasks to run RoundhousE database migrations.

Nested types and modules

TypeDescription
RoundhouseParams

Parameter type to configure the RoundhousE runner

Functions and values

Function or valueDescription
Roundhouse setParams
Signature: setParams:(RoundhouseParams -> RoundhouseParams) -> unit

This task to can be used to run RoundhousE for database migrations.

Parameters

  • setParams - Function used to overwrite the Roundhouse default parameters.

Sample

1: 
2: 
3: 
4: 
5: 
Roundhouse (fun p -> { p with 
   SqlFilesDirectory = ".\database"
   ServerDatabase = "(local)"
   DatabaseName = "atxc"
   WarnOnOneTimeScriptChanges = true })
RoundhouseDefaults
Signature: RoundhouseParams

Roundhouse default parameters - tries to locate rh.exe in any subfolder.

Fork me on GitHub