]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Update.php
Use the post language for the language detection / config for quality
[friendica.git] / src / Core / Update.php
index a4c5cf313e7de99d3e54fb9c457f42c32236f1a0..2718d03d0c3318d69e33e0fd84b28e2ac325cf09 100644 (file)
@@ -129,20 +129,6 @@ class Update
                        DI::lock()->release('dbupdate', true);
                }
 
-               if (!DBStructure::existsTable('config')) {
-                       DBA::e(<<<EOF
-CREATE TABLE IF NOT EXISTS `config` (
-       `id` int unsigned NOT NULL auto_increment COMMENT '',
-       `cat` varbinary(50) NOT NULL DEFAULT '' COMMENT 'The category of the entry',
-       `k` varbinary(50) NOT NULL DEFAULT '' COMMENT 'The key of the entry',
-       `v` mediumtext COMMENT '',
-        PRIMARY KEY(`id`),
-        UNIQUE INDEX `cat_k` (`cat`,`k`)
-) DEFAULT COLLATE utf8mb4_general_ci COMMENT='main configuration storage';
-EOF
-);
-               }
-
                $build = DI::config()->get('system', 'build');
 
                if (empty($build)) {