Set scim_externalid to nullable, default null
This commit is contained in:
parent
1e3281c76c
commit
cd385e0865
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue