Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 690eb9d

Browse files
committed
2 parents d72e7a0 + 9f211dc commit 690eb9d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

docs/upgrading.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
**Estimated Upgrade Time: 1 hour**
66

7+
### Minimum Requirements
8+
9+
Adldap2-Laravel now requires a minimum of Laravel 5.5, as all previous versions are now out of their respective support windows.
10+
11+
If you require using an earlier version of Laravel, please use Adldap2-Laravel v5.0.
12+
713
### Configuration
814

915
It is recommended to re-publish both of your `ldap.php` and `ldap_auth.php`
@@ -95,7 +101,7 @@ If you're starting from scratch, simply add the `objectguid` column (or whicheve
95101
```php
96102
Schema::create('users', function (Blueprint $table) {
97103
$table->increments('id');
98-
$table->string('objectguid')->nullable(); // Added here.
104+
$table->string('objectguid')->unique()->nullable(); // Added here.
99105
$table->string('name');
100106
$table->string('email')->unique();
101107
$table->timestamp('email_verified_at')->nullable();
@@ -111,7 +117,7 @@ Ex. `php artisan migration:make add_objectguid_column`
111117

112118
```php
113119
Schema::table('users', function (Blueprint $table) {
114-
$table->string('objectguid')->nullable()->after('id');
120+
$table->string('objectguid')->unique()->nullable()->after('id');
115121
});
116122
```
117123

0 commit comments

Comments
 (0)