1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 04:42:29 +01:00
Pterodactyl-Panel/database/migrations/2016_01_23_195851_add_api_keys.php

34 lines
676 B
PHP
Raw Normal View History

2016-01-16 01:26:50 +01:00
<?php
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.
*
* @return void
*/
public function up()
{
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');
$table->text('allowed_ips')->nullable();
2016-01-16 01:26:50 +01:00
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
2016-01-23 21:42:25 +01:00
Schema::dropIfExists('api_keys');
2016-01-16 01:26:50 +01:00
}
}