bigIncrements('id'); $table->string('name')->unique(); $table->string('alias_name')->nullable(); $table->string('remark')->nullable(); $table->bigInteger('id_parent')->index()->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('authorities'); } }