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 AddApiPermissions extends Migration
|
2016-01-16 01:26:50 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('api_permissions', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
2016-01-23 21:42:25 +01:00
|
|
|
$table->mediumInteger('key_id')->unsigned();
|
2016-01-16 01:26:50 +01:00
|
|
|
$table->string('permission');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2016-01-23 21:42:25 +01:00
|
|
|
Schema::dropIfExists('api_permissions');
|
2016-01-16 01:26:50 +01:00
|
|
|
}
|
|
|
|
}
|