Merge pull request #106 from ollien/master

Update documentation for GetDBVersion to match functionality
pull/103/merge
Vojtech Vitek 2018-05-17 14:16:47 -04:00 committed by GitHub
commit a4bf952640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -266,8 +266,7 @@ func createVersionTable(db *sql.DB) error {
return txn.Commit()
}
// GetDBVersion is a wrapper for EnsureDBVersion for callers that don't already
// have their own DB instance
// GetDBVersion is an alias for EnsureDBVersion, but returns -1 in error.
func GetDBVersion(db *sql.DB) (int64, error) {
version, err := EnsureDBVersion(db)
if err != nil {