mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix #103 Limit the size of account_creation_request_tokens token column to 16 characters
This commit is contained in:
parent
cf6b007f26
commit
1e5052da1d
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ class CreateAccountCreationRequestTokensTable extends Migration
|
|||
{
|
||||
Schema::create('account_creation_request_tokens', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('token')->index();
|
||||
$table->string('token', 16)->index();
|
||||
$table->boolean('used')->default(false);
|
||||
$table->dateTime('validated_at')->nullable();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue