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