id('id')->primary()->autoIncrement(); $table->string('migration', 255)->comment('迁移文件名'); $table->integer('batch')->comment('批次号'); $table->timestamp('ran_at')->useCurrent()->comment('执行时间'); // 索引 $table->index('migration'); $table->index('batch'); }); } public function down(): void { Schema::dropIfExists('migrations'); } }