increments('id'); $table->integer('user_id'); $table->text('content')->nullable()->comment('内容'); $table->text('photos')->nullable()->comment('照片'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('moments'); } }