From 526623934156effdb12574ac4cfa1a9f2ca00fb8 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 30 Oct 2020 07:47:25 +1100 Subject: [PATCH] Fix for nullability on assigned_user_id --- ...29_204434_tasks_table_project_nullable.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2020_10_29_204434_tasks_table_project_nullable.php diff --git a/database/migrations/2020_10_29_204434_tasks_table_project_nullable.php b/database/migrations/2020_10_29_204434_tasks_table_project_nullable.php new file mode 100644 index 000000000000..516c71735907 --- /dev/null +++ b/database/migrations/2020_10_29_204434_tasks_table_project_nullable.php @@ -0,0 +1,32 @@ +unsignedInteger('assigned_user_id')->nullable()->change(); + + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}