# README
Migration
Commonly used migration tools
Usage
package main
import (
"context"
"embed"
"github.com/infiniteloopcloud/migration"
)
//go:embed files
var Files embed.FS
func main() {
ctx := context.Background()
// Library usage
migration.Get(ctx, "database connection string", Files)
// Executable usage
migration.MigrationTool("database connection string", false, Files)
}
# Functions
No description provided by the author
Get will return the migration prepared for the certain files embedded into the binary.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
No description provided by the author
No description provided by the author