From: Evan Prodromou Date: Tue, 23 Jun 2009 16:16:41 +0000 (-0700) Subject: a little sql script to drop full-text index and use innodb for profile and notice X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4ca6aa1930f65120162a692c4cb86f5becb4ae7f;p=quix0rs-gnu-social.git a little sql script to drop full-text index and use innodb for profile and notice --- diff --git a/db/innodb.sql b/db/innodb.sql new file mode 100644 index 0000000000..f3ab6cd690 --- /dev/null +++ b/db/innodb.sql @@ -0,0 +1,2 @@ +alter table profile drop index nickname, engine=InnoDB; +alter table notice drop index content, engine=InnoDB;