fix comment of Migration.Source

pull/202/head
Keiichi Hirobe 2020-02-17 01:18:55 +09:00
parent e42e49944b
commit 7218a8d9f2
1 changed files with 1 additions and 1 deletions

View File

@ -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