Skip to content

Commit e5faac3

Browse files
Increase size of configure.log from text to mediumtext (#2794)
This was inadvertently reduced when we started using Laravel migrations in #904
1 parent c43c810 commit e5faac3

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration {
8+
public function up(): void
9+
{
10+
Schema::table('configure', function (Blueprint $table) {
11+
$table->mediumText('log')->change();
12+
});
13+
}
14+
15+
public function down(): void
16+
{
17+
Schema::table('configure', function (Blueprint $table) {
18+
$table->text('log')->change();
19+
});
20+
}
21+
};

0 commit comments

Comments
 (0)