Set scim_externalid to nullable, default null

This commit is contained in:
Brady Wetherington 2022-10-25 14:38:19 -07:00
parent 1e3281c76c
commit cd385e0865

View file

@ -14,7 +14,7 @@ class AddExternalidToUsers extends Migration
public function up() public function up()
{ {
Schema::table('users', function (Blueprint $table) { Schema::table('users', function (Blueprint $table) {
$table->string('scim_externalid'); $table->string('scim_externalid')->nullable()->default(null);
}); });
} }