mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 00:03:37 +08:00
remove migration (initially was intended) to change settings.value to longblob
This commit is contained in:
parent
66ddbfb94d
commit
cb89203ac5
|
@ -1,26 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of Flarum.
|
|
||||||
*
|
|
||||||
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
||||||
*
|
|
||||||
* 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();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
];
|
|
Loading…
Reference in New Issue
Block a user