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