1
0
forked from ALHP/ALHP.GO

increase our own build-version if rebuild

This commit is contained in:
2021-11-27 01:28:42 +01:00
parent 1bff197ce9
commit be276f9ead
10 changed files with 350 additions and 30 deletions

View File

@@ -37,6 +37,8 @@ const (
FieldHash = "hash"
// FieldLto holds the string denoting the lto field in the database.
FieldLto = "lto"
// FieldLastVersionBuild holds the string denoting the last_version_build field in the database.
FieldLastVersionBuild = "last_version_build"
// Table holds the table name of the dbpackage in the database.
Table = "db_packages"
)
@@ -57,6 +59,7 @@ var Columns = []string{
FieldUpdated,
FieldHash,
FieldLto,
FieldLastVersionBuild,
}
// ValidColumn reports if the column name is valid (part of the table columns).