Запись банковских логов в sqlite.

This commit is contained in:
Igor Barkov (iwork) 2021-01-26 17:59:05 +02:00
parent 10f3bab59d
commit 625793c0f5
1 changed files with 10 additions and 8 deletions

View File

@ -4,6 +4,7 @@
* Date: 03.07.2020
* Time: 07:24
*/
namespace Battles;
use Config;
@ -91,6 +92,7 @@ class Bank
}
$db = new SQLite3('databases/logs.sqlite');
$db->exec("CREATE TABLE IF NOT EXISTS bank_logs (id integer constraint bank_logs_pk primary key autoincrement, sender_id integer, receiver_id integer, amount integer, type text, text text)");
$logLine = $db->prepare("INSERT INTO bank_logs (sender_id, receiver_id, amount, type, text) VALUES (?, ?, ?, ?, ?)");
$logLine->bindParam(1, $senderId, SQLITE3_INTEGER);
$logLine->bindParam(2, $receiverId, SQLITE3_INTEGER);