2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2016-01-23 21:42:25 +01:00
|
|
|
class AddPermissions extends Migration
|
2015-12-06 19:58:49 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('permissions', function (Blueprint $table) {
|
2016-01-23 21:42:25 +01:00
|
|
|
$table->increments('id');
|
2015-12-06 19:58:49 +01:00
|
|
|
$table->integer('user_id')->unsigned();
|
|
|
|
$table->integer('server_id')->unsigned();
|
2016-01-23 21:42:25 +01:00
|
|
|
$table->string('permissions');
|
|
|
|
$table->timestamps();
|
2015-12-06 19:58:49 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2016-01-23 21:42:25 +01:00
|
|
|
Schema::dropIfExists('permissions');
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|
|
|
|
}
|