id(); $table->integer('user_id', 10)->comment('用户'); $table->string('content', 512)->comment('内容'); $table->text('file')->nullable()->comment('图片可多张'); $table->text('status')->comment('状态0待处理,1已处理'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_feedbacks'); } }