2016-01-16 01:26:50 +01:00
|
|
|
<?php
|
|
|
|
|
2022-11-25 21:29:04 +01:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
2016-01-16 01:26:50 +01:00
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2016-01-23 21:42:25 +01:00
|
|
|
class AddApiKeys extends Migration
|
2016-01-16 01:26:50 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function up(): void
|
2016-01-16 01:26:50 +01:00
|
|
|
{
|
|
|
|
Schema::create('api_keys', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->char('public', 16);
|
2016-01-23 21:42:25 +01:00
|
|
|
$table->text('secret');
|
2016-01-24 02:00:11 +01:00
|
|
|
$table->text('allowed_ips')->nullable();
|
2016-01-16 01:26:50 +01:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function down(): void
|
2016-01-16 01:26:50 +01:00
|
|
|
{
|
2016-01-23 21:42:25 +01:00
|
|
|
Schema::dropIfExists('api_keys');
|
2016-01-16 01:26:50 +01:00
|
|
|
}
|
|
|
|
}
|