change customer_socials:access_token to text

This commit is contained in:
Edward Yang 2022-12-27 11:25:26 +08:00
parent 1867349057
commit e338aa07aa
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ return new class extends Migration
$table->string('provider');
$table->string('user_id');
$table->string('union_id');
$table->string('access_token');
$table->text('access_token');
$table->text('extra');
$table->timestamps();
});