From b58f68dfcc038ef0a746db01f85df1e23c72c1fb Mon Sep 17 00:00:00 2001 From: BobdaBiscuit Date: Tue, 27 Dec 2016 22:09:18 +0000 Subject: [PATCH] comment out non functional migration (#13111) --- code/modules/migrations/SS13_Prefs/007-remove-flavortext.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/migrations/SS13_Prefs/007-remove-flavortext.dm b/code/modules/migrations/SS13_Prefs/007-remove-flavortext.dm index b2453f2e89c..74fb1f3f20c 100644 --- a/code/modules/migrations/SS13_Prefs/007-remove-flavortext.dm +++ b/code/modules/migrations/SS13_Prefs/007-remove-flavortext.dm @@ -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()