Appropriately refresh sending tokens

This commit is contained in:
David Bomba 2022-06-22 19:16:01 +10:00
parent 3141a33ced
commit 386c3bff0e

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class SetOauthExpiryColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->datetime('oauth_user_token_expiry')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}