Files
panel-pelican-dev/database/migrations/2016_01_23_195851_add_api_keys.php
2025-09-24 13:34:19 +02:00

30 lines
649 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('api_keys', function (Blueprint $table) {
$table->increments('id');
$table->string('public', 16)->nullable();
$table->text('secret');
$table->text('allowed_ips')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('api_keys');
}
};