id(); $table->string('name', 255)->nullable()->comment('姓名'); $table->string('description', 500)->nullable()->comment('描述'); $table->string('mobile', 30)->nullable()->comment('手机'); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('personals'); } }