id(); $table->string('body', 500)->nullable()->comment('反馈意见'); $table->char('mobile', 11)->nullable()->comment('手机号'); $table->bigInteger('user_id')->default(0); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('retroactions'); } }