Save schema version for 3.7 (#5675)

This commit is contained in:
Joram Wilander
2017-03-07 08:30:34 -05:00
committed by George Goldberg
parent 378f02b445
commit 115acb1fb1

View File

@@ -236,5 +236,7 @@ func UpgradeDatabaseToVersion37(sqlStore *SqlStore) {
if shouldPerformUpgrade(sqlStore, VERSION_3_6_0, VERSION_3_7_0) {
// Add EditAt column to Posts
sqlStore.CreateColumnIfNotExists("Posts", "EditAt", " bigint", " bigint", "0")
saveSchemaVersion(sqlStore, VERSION_3_7_0)
}
}