Add migrations

pull/6516/head
Daniel Supernault 4 months ago
parent f6746aec8b
commit c857a3d6e3
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -0,0 +1,42 @@
<?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_device_codes', function (Blueprint $table) {
$table->char('id', 80)->primary();
$table->foreignId('user_id')->nullable()->index();
$table->foreignUuid('client_id')->index();
$table->char('user_code', 8)->unique();
$table->text('scopes');
$table->boolean('revoked');
$table->dateTime('user_approved_at')->nullable();
$table->dateTime('last_polled_at')->nullable();
$table->dateTime('expires_at')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('oauth_device_codes');
}
/**
* Get the migration connection name.
*/
public function getConnection(): ?string
{
return $this->connection ?? config('passport.connection');
}
};

@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Laravel\Passport\Passport;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
if (! windows_os()) {
if(file_exists(Passport::keyPath('oauth-public.key'))) {
chmod(Passport::keyPath('oauth-public.key'), 0660);
}
if(file_exists(Passport::keyPath('oauth-private.key'))) {
chmod(Passport::keyPath('oauth-private.key'), 0600);
}
}
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};
Loading…
Cancel
Save