From 591f7b7ab7e3df21566df54dfdbd3b9313e20544 Mon Sep 17 00:00:00 2001 From: Mehmet Faruk Demirkoparan Date: Wed, 12 Feb 2025 13:01:13 +0300 Subject: [PATCH 1/2] - Added nullable to description column. --- ...fix_aissue_description_nullable_tables.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 database/migrations/z_2025_02_12_175155_fix_aissue_description_nullable_tables.php 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(); + }); + } +}; From 54e97c6a858945f76a0749f4bbf30e387b877346 Mon Sep 17 00:00:00 2001 From: MFarukDemirkoparan <83613682+MFarukDemirkoparan@users.noreply.github.com> Date: Wed, 12 Feb 2025 10:01:35 +0000 Subject: [PATCH 2/2] Fix styling --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); /*