bigIncrements('id'); $table->string('name')->nullable()->comment('姓名'); $table->integer('age')->comment('年龄'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('hello'); } }