filament-oauth2/database/migrations/create_oauth2_table.php.stub

20 lines
390 B
Plaintext

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up()
{
Schema::create('filament_oauth2_table', function (Blueprint $table) {
$table->id();
// add fields
$table->timestamps();
});
}
};