fix: method comments

This commit is contained in:
Andrey Melnikov
2021-10-28 14:45:55 -07:00
parent 719613ecd4
commit 4d1aff5c5b

View File

@@ -13,6 +13,7 @@ func initialize20211028205201() {
}
}
// Up20211028205201 creates the new cvat 1.6.0 workspace template
func Up20211028205201(tx *sql.Tx) error {
// This code is executed when the migration is applied.
return createWorkspaceTemplate(
@@ -21,6 +22,7 @@ func Up20211028205201(tx *sql.Tx) error {
"Powerful and efficient Computer Vision Annotation Tool (CVAT)")
}
// Down20211028205201 archives the new cvat 1.6.0 workspace template
func Down20211028205201(tx *sql.Tx) error {
return archiveWorkspaceTemplate("CVAT_1.6.0")
}