删除 Access Tokens 表

This commit is contained in:
Database Server 2022-11-08 18:14:45 +08:00
parent c27ed95ace
commit 71f00e82c3

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::dropIfExists('access_tokens');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};