]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #4066 from MrPetovan/bug/4046-remove-group_member-uid
authorMichael Vogel <icarus@dabo.de>
Fri, 15 Dec 2017 16:47:57 +0000 (17:47 +0100)
committerGitHub <noreply@github.com>
Fri, 15 Dec 2017 16:47:57 +0000 (17:47 +0100)
Remove group_member.uid

util/convert_innodb.sql [deleted file]

diff --git a/util/convert_innodb.sql b/util/convert_innodb.sql
deleted file mode 100644 (file)
index 7f3d99a..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#  script to convert tables from MyISAM to InnoDB
-#  change the %PLACEHOLDER% to the actual name of your Friendica DB
-SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;') 
-FROM information_schema.tables 
-WHERE engine = 'MyISAM' AND  `table_schema` = '%PLACEHOLDER%';