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()