1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 19:34:04 +00:00

Add remember column to to the impersonation token (#1101)

This commit is contained in:
lukinovec 2023-04-13 02:05:26 +02:00 committed by GitHub
parent dfd39722a7
commit 228c2676f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -20,6 +20,7 @@ return new class extends Migration
$table->string('token', 128)->primary();
$table->string(Tenancy::tenantKeyColumn());
$table->string('user_id');
$table->boolean('remember');
$table->string('auth_guard');
$table->string('redirect_url');
$table->timestamp('created_at');