id(); $table->string('name')->nullable()->comment('姓名'); $table->string('phone')->nullable()->comment('电话'); $table->string('company')->nullable()->comment('公司名称'); $table->unsignedTinyInteger('type')->nullable()->comment('业务需求'); $table->string('content')->nullable()->comment('项目概况与备注'); $table->unsignedTinyInteger('is_handle')->default(0)->comment('状态:0未处理,1已处理'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contacts'); } };