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.
2 parents dbde7d2 + 9e7b175 commit 69845b4Copy full SHA for 69845b4
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
+};
src/AIssue.php
@@ -2,6 +2,4 @@
namespace AuroraWebSoftware\AIssue;
-class AIssue
-{
-}
+class AIssue {}
0 commit comments