1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 16:34:04 +00:00

Add remember column to to the impersonation token

This commit is contained in:
lukinovec 2023-04-12 12:13:33 +02:00
parent dfd39722a7
commit 0553040b8d
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');