This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
l9_stud_bot/database/l9.sql

7 lines
210 B
SQL

-- Пользователи системы
CREATE TABLE IF NOT EXISTS `users` (
`l9Id` bigint NOT NULL,
-- Идентификатор пользователя системы
PRIMARY KEY (`l9Id`)
);