PteroTheme/database/migrations/2016_01_23_195851_add_api_k...

30 lines
622 B
PHP
Raw Normal View History

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');
$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
}
}