package
4.15.3
Repository: https://github.com/sfinks80/golang-migrate.git
Documentation: pkg.go.dev

# README

neo4j

The Neo4j driver (bolt) does not natively support executing multiple statements in a single query. To allow for multiple statements in a single migration, you can use the x-multi-statement param. This mode splits the migration text into separately-executed statements by a semi-colon ;. Thus x-multi-statement cannot be used when a statement in the migration contains a string with a semi-colon. The queries should run in a single transaction, so partial migrations should not be a concern, but this is untested.

neo4j://user:password@host:port/

URL QueryWithInstance ConfigDescription
x-multi-statementMultiStatementEnable multiple statements to be ran in a single migration (See note above)
userContained within AuthConfigThe user to sign in as
passwordContained within AuthConfigThe user's password
hostThe host to connect to. Values that start with / are for unix domain sockets. (default is localhost)
portThe port to bind to. (default is 7687)
MigrationsLabelName of the migrations node label

Supported versions

Only Neo4j v3.5+ is supported

# Functions

No description provided by the author

# Constants

No description provided by the author

# Variables

10 MB.
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
No description provided by the author