xorm/schemas/version.go
Lunny Xiao 7fd6356a85
Some checks failed
continuous-integration/drone/push Build is failing
Add DBVersion (#1723)
Reviewed-on: #1723
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com>
2021-06-12 15:06:05 +08:00

13 lines
338 B
Go

// Copyright 2021 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package schemas
// Version represents a database version
type Version struct {
Number string // the version number which could be compared
Level string
Edition string
}