integer('notice_id')->unique()->comment('通知id') ->after('id'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('notices', function (Blueprint $table) { $table->dropColumn('notice_id'); }); } };