diff options
Diffstat (limited to 'internal/storage/const.go')
| -rw-r--r-- | internal/storage/const.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/storage/const.go b/internal/storage/const.go index 907842b89..84066fa23 100644 --- a/internal/storage/const.go +++ b/internal/storage/const.go @@ -70,7 +70,8 @@ const ( ) var ( - reMigration = regexp.MustCompile(`^V(?P<Version>\d{4})\.(?P<Name>[^.]+)\.(?P<Direction>(up|down))\.sql$`) + reMigration = regexp.MustCompile(`^V(?P<Version>\d{4})\.(?P<Name>[^.]+)\.(?P<Direction>(up|down))\.sql$`) + rePostgreSQLUnixDomainSocket = regexp.MustCompile(`^\.s\.PGSQL\.(\d+)$`) ) const ( |
