id(); #$table->bigIncrements('id'); $table->string('title')->comment('标题'); $table->string('key')->comment('关键字'); $table->string('value')->comment('值'); $table->string('desc')->comment('描述'); $table->string('is_delete')->comment('是否删除'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }