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