diff --git a/database/migrations/z_2025_02_12_175155_fix_aissue_description_nullable_tables.php b/database/migrations/z_2025_02_12_175155_fix_aissue_description_nullable_tables.php new file mode 100644 index 0000000..28280c9 --- /dev/null +++ b/database/migrations/z_2025_02_12_175155_fix_aissue_description_nullable_tables.php @@ -0,0 +1,22 @@ +text('description')->nullable()->change(); + }); + } + + public function down(): void + { + Schema::table('aissue_issues', function (Blueprint $table) { + $table->text('description')->nullable(false)->change(); + }); + } +}; diff --git a/tests/TestCase.php b/tests/TestCase.php index 40ce6f6..61990a6 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -26,7 +26,7 @@ protected function getPackageProviders($app) public function getEnvironmentSetUp($app) { - //config()->set('database.default', 'testing'); + // config()->set('database.default', 'testing'); config()->set('database.default', 'mysql'); /*