string('grantee', 100); $table->string('entity', 100); $table->string('permission', 100); $table->primary(['grantee', 'entity', 'permission']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('permissions'); } }