From cb89203ac52fb7437bd2d528da65d468b413fe0c Mon Sep 17 00:00:00 2001 From: Daniel Klabbers Date: Thu, 19 Jul 2018 09:45:29 +0200 Subject: [PATCH] remove migration (initially was intended) to change settings.value to longblob --- ..._084700_change_settings_value_longblob.php | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 framework/core/migrations/2018_01_19_084700_change_settings_value_longblob.php diff --git a/framework/core/migrations/2018_01_19_084700_change_settings_value_longblob.php b/framework/core/migrations/2018_01_19_084700_change_settings_value_longblob.php deleted file mode 100644 index b6493cfc4..000000000 --- a/framework/core/migrations/2018_01_19_084700_change_settings_value_longblob.php +++ /dev/null @@ -1,26 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -use Illuminate\Database\Schema\Blueprint; -use Illuminate\Database\Schema\Builder; - -return [ - 'up' => function (Builder $schema) { - $prefix = $schema->getConnection()->getTablePrefix(); -// $schema->getConnection()->statement('ALTER TABLE '.$prefix.'settings MODIFY "value" LONGBLOB'); - }, - - 'down' => function (Builder $schema) { - $schema->table('posts', function (Blueprint $table) { -// $table->longText('value')->nullable()->change(); - }); - } -];