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