mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Set scim_externalid to nullable, default null
This commit is contained in:
parent
1e3281c76c
commit
cd385e0865
|
@ -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);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue