bigIncrements('id'); $table->string('name')->nullable()->comment('活动名称'); $table->text('countent')->nullable()->comment('内容'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('activities'); } }