id(); $table->string('name', 20); $table->string('mark', 40); $table->string('value', 300); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('configs'); } }