Uncomment 3.8 database upgrade. (#5992)

Этот коммит содержится в:
George Goldberg
2017-04-05 13:17:42 +01:00
коммит произвёл Christopher Speller
родитель 481d0a8af7
Коммит 22005f876f

Просмотреть файл

@@ -244,12 +244,10 @@ func UpgradeDatabaseToVersion37(sqlStore *SqlStore) {
}
func UpgradeDatabaseToVersion38(sqlStore *SqlStore) {
// TODO: Uncomment following condition when version 3.8.0 is released
// if shouldPerformUpgrade(sqlStore, VERSION_3_7_0, VERSION_3_8_0) {
if shouldPerformUpgrade(sqlStore, VERSION_3_7_0, VERSION_3_8_0) {
// Add the IsPinned column to posts.
sqlStore.CreateColumnIfNotExists("Posts", "IsPinned", "boolean", "boolean", "0")
// Add the IsPinned column to posts.
sqlStore.CreateColumnIfNotExists("Posts", "IsPinned", "boolean", "boolean", "0")
// saveSchemaVersion(sqlStore, VERSION_3_8_0)
// }
saveSchemaVersion(sqlStore, VERSION_3_8_0)
}
}