id(); $table->integer('user_id')->comment('用户id'); $table->string('type')->nullable()->comment('反馈类型'); $table->text('images')->nullable()->comment('图片'); $table->string('desc')->nullable()->comment('描述'); $table->char('mobile',11)->nullable()->comment('联系电话'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('feedback'); } };