increments('id'); $table->integer('category_id')->unsigned()->nullable()->index('permissions_category_id_foreign'); $table->string('name')->unique(); $table->string('display_name')->nullable(); $table->string('description')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('permissions'); } }