Nahrát soubory do „z2/sql“
This commit is contained in:
parent
ace4737ba3
commit
8dcd032337
10
z2/sql/init.sql
Normal file
10
z2/sql/init.sql
Normal file
@ -0,0 +1,10 @@
|
||||
CREATE DATABASE IF NOT EXISTS telegram_bot;
|
||||
USE telegram_bot;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS violators (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
username VARCHAR(255),
|
||||
message TEXT,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user