comment out non functional migration (#13111)

This commit is contained in:
BobdaBiscuit
2016-12-27 22:09:18 +00:00
committed by Probe1
parent 97092b76fe
commit b58f68dfcc

View File

@@ -3,8 +3,9 @@
name = "Remove flavor text"
/datum/migration/sqlite/ss13_prefs/_007/up()
if(!hasColumn("client","flavor_text"))
return execute("ALTER TABLE `client` DROP COLUMN flavor_text")
// DROP COLUMN doesn't actually exist in sqlite so this needs some fuckery to actually get functional
// if(!hasColumn("client","flavor_text"))
// return execute("ALTER TABLE `client` DROP COLUMN flavor_text")
return TRUE
/datum/migration/sqlite/ss13_prefs/_007/down()