From 7218a8d9f271b8d37a8d738b878d72ced88d19eb Mon Sep 17 00:00:00 2001 From: Keiichi Hirobe Date: Mon, 17 Feb 2020 01:18:55 +0900 Subject: [PATCH] fix comment of Migration.Source --- migration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration.go b/migration.go index 68e579f..dc05712 100644 --- a/migration.go +++ b/migration.go @@ -24,7 +24,7 @@ type Migration struct { Version int64 Next int64 // next version, or -1 if none Previous int64 // previous version, -1 if none - Source string // path to .sql script + Source string // path to .sql script or go file Registered bool UpFn func(*sql.Tx) error // Up go migration function DownFn func(*sql.Tx) error // Down go migration function