8 lines
86 B
SQL
8 lines
86 B
SQL
create table admins
|
|
(
|
|
chat_id INTEGER
|
|
primary key,
|
|
username TEXT
|
|
);
|
|
|