timestamp('expires_at')->nullable()->default(null); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('twitch_tokens', function (Blueprint $table) { $table->dropColumn('expires_at'); }); } };