id(); $table->string('name', 40)->default('My Server'); $table->string('description', 250)->default("No description."); $table->bigInteger('creator'); $table->string('ip'); $table->string('port'); $table->string('secret'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('servers'); } }