id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->json('img')->nullable(); $table->integer('status')->nullable()->default(1); $table->bigInteger('created_by')->unsigned()->nullable(); $table->foreign('created_by')->references('id')->on('admins')->onDelete('cascade'); $table->bigInteger('updated_by')->unsigned()->nullable(); $table->foreign('updated_by')->references('id')->on('admins')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admins'); } }