increments('id'); $table->integer('messages_id')->comment('信息ID'); $table->integer('user_id')->comment('用户ID'); $table->string('username',255)->nullable()->comment('用户名'); $table->string('mobile',11)->nullable()->comment('联系方式'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messages_followers'); } }