id(); $table->string('label', 50); $table->string('value', 1000); $table->tinyInteger('type')->comment('1-文字 2-图片 3-文字数组 4-图片数组 5-Key_Value')->index(); $table->string('remark', 100); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('configs'); } }