Skip to content

Commit 83c3abb

Browse files
committed
Extend 'body' length in 'sent_emails' table
1 parent cd1bed0 commit 83c3abb

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
{
9+
/**
10+
* Run the migrations.
11+
*/
12+
public function up(): void
13+
{
14+
Schema::table('sent_emails', function (Blueprint $table) {
15+
$table->longText('body')->change();
16+
});
17+
}
18+
19+
/**
20+
* Reverse the migrations.
21+
*/
22+
public function down(): void
23+
{
24+
Schema::table('sent_emails', function (Blueprint $table) {
25+
$table->text('body')->change();
26+
});
27+
}
28+
};

0 commit comments

Comments
 (0)