From cd385e0865c85b9d558b23b10fc5505458ae2ad7 Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Tue, 25 Oct 2022 14:38:19 -0700 Subject: [PATCH] Set scim_externalid to nullable, default null --- .../migrations/2022_10_25_193823_add_externalid_to_users.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2022_10_25_193823_add_externalid_to_users.php b/database/migrations/2022_10_25_193823_add_externalid_to_users.php index 5f11e5946..2e9caca40 100644 --- a/database/migrations/2022_10_25_193823_add_externalid_to_users.php +++ b/database/migrations/2022_10_25_193823_add_externalid_to_users.php @@ -14,7 +14,7 @@ class AddExternalidToUsers extends Migration public function up() { Schema::table('users', function (Blueprint $table) { - $table->string('scim_externalid'); + $table->string('scim_externalid')->nullable()->default(null); }); }