From 5d1e0e2d675fe59a379e9a2b156ba384d537ecba Mon Sep 17 00:00:00 2001 From: Pavel_Duron Date: Mon, 7 Nov 2022 20:09:09 +1000 Subject: [PATCH] =?UTF-8?q?=D1=82=D1=81=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql.py b/sql.py index 65d344e..29ecb9b 100644 --- a/sql.py +++ b/sql.py @@ -4,7 +4,7 @@ import sqlite3 as sq async def db_start(): #подключение к бд global db, cur - db = sq.connect('dickpick.db') + db = sq.connect('users.db') cur = db.cursor() cur.execute(''''CREATE TABLE IF NOT EXISTS users(id INTEGER PRIMARY KEY, users_id INTEGER, user_name TEXT)''')