You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"getConversation" => "SELECT * FROM {$this->tableNames['conversations']} WHERE chat_id = :chat_id AND name = :name",
87
+
"updateConversation" => "UPDATE {$this->tableNames['conversations']} SET value = :value, additional_param = :additional_param WHERE chat_id = :chat_id AND name = :name",
87
88
"getConversationsByChat" => "SELECT * FROM {$this->tableNames['conversations']} WHERE chat_id = :chat_id",
88
89
"getConversationsByValue" => "SELECT * FROM {$this->tableNames['conversations']} WHERE value = :value",
89
90
"getConversationsByName" => "SELECT * FROM {$this->tableNames['conversations']} WHERE name = :name"
@@ -115,15 +116,21 @@ public function deleteConversation(int $chat_id, string $name): void{
0 commit comments