From aabe525acdab9e413a5335bc23ae881d9f90fa3b Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 29 Oct 2020 09:51:15 +1100 Subject: [PATCH] Fix for assigned user nullable --- ...10_28_225022_assigned_user_tasks_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2020_10_28_225022_assigned_user_tasks_table.php diff --git a/database/migrations/2020_10_28_225022_assigned_user_tasks_table.php b/database/migrations/2020_10_28_225022_assigned_user_tasks_table.php new file mode 100644 index 000000000000..5313d450c120 --- /dev/null +++ b/database/migrations/2020_10_28_225022_assigned_user_tasks_table.php @@ -0,0 +1,32 @@ +unsignedInteger('assigned_user_id')->nullable()->change(); + + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}