id(); $table->timestamps(); $table->string("servername"); $table->timestamp("last_seen")->nullable(); $table->bigInteger("storage")->comment("In Byte, for cache"); $table->bigInteger("userd")->comment("Userd Space in Byte")->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists("servers"); } }