1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- return new class extends Migration
- {
- /**
- * Run the migrations.
- */
- public function up(): void
- {
- Schema::create('oauth_clients', function (Blueprint $table) {
- $table->bigIncrements('id');
- $table->unsignedBigInteger('user_id')->nullable()->index();
- $table->string('name');
- $table->string('secret', 100)->nullable();
- $table->string('provider')->nullable();
- $table->text('redirect');
- $table->boolean('personal_access_client');
- $table->boolean('password_client');
- $table->boolean('revoked');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- */
- public function down(): void
- {
- Schema::dropIfExists('oauth_clients');
- }
- };
|