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 125ea75 commit c1325cbCopy full SHA for c1325cb
database/migrations/fix_aissue_description_tables.php
@@ -0,0 +1,22 @@
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
+ public function up(): void
10
+ {
11
+ Schema::table('aissue_issues', function (Blueprint $table) {
12
+ $table->text('description')->change();
13
+ });
14
+ }
15
16
+ public function down(): void
17
18
19
+ $table->string('description')->nullable()->change();
20
21
22
+};
0 commit comments