We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd1bed0 commit 83c3abbCopy full SHA for 83c3abb
src/database/migrations/2024_05_07_204307_change_body_lengh.php
@@ -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
25
+ $table->text('body')->change();
26
27
28
+};
0 commit comments